OFFSET
1,1
LINKS
Aaron Toponce, Table of n, a(n) for n = 1..10000
FORMULA
For n > 10, 6n < a(n) < 14n. - Charles R Greathouse IV, Oct 15 2025
a(n+1) <= a(n) + 90. Infinitely often a(n+10) = a(n) + 10. a(n+11) > a(n) + 11. - Charles R Greathouse IV, Oct 15 2025
EXAMPLE
253 is in the sequence because 253 = 11 * 23 and 23 is the concatenation of 2 and 3 (first and last digit of 253).
MATHEMATICA
fQ[ n_ ] := Block[ {id = IntegerDigits[ n ]}, IntegerQ[ n / FromDigits[ {id[ [ 1 ] ], id[ [ -1 ] ]} ] ] ]; Select[ Range[ 100, 461 ], fQ[ # ] & ] (* Robert G. Wilson v, Jul 19 2005 *)
PROG
(PARI) is(n)=n>99 && n%(n\10^logint(n, 10)*10+n%10)==0 \\ Charles R Greathouse IV, Oct 15 2025
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Luca Colucci, Jul 01 2005
EXTENSIONS
Corrected and extended by Robert G. Wilson v, Jul 19 2005
STATUS
approved
