Self numbers: Difference between revisions

Content added Content deleted
m (→‎ten millionth self number: added a statement.)
m (→‎ten millionth self number: replaced a statement.)
Line 775: Line 775:
{{trans|Go (low memory)}}
{{trans|Go (low memory)}}
<lang rexx>/*REXX program displays N self numbers, aka Colombian or Devlali numbers. OEIS A3052.*/
<lang rexx>/*REXX program displays N self numbers, aka Colombian or Devlali numbers. OEIS A3052.*/
numeric digits 20 /*ensure enough decimal digits for #. */
if high=='' | high=="," then high= 100000000 /*Not specified? Then use 100M default*/
if high=='' | high=="," then high= 100000000 /*Not specified? Then use 100M default*/
parse arg high . /*obtain optional argument from the CL.*/
parse arg high . /*obtain optional argument from the CL.*/