OFFSET
1,2
COMMENTS
Also numbers k such that k concatenated with k-1 gives the product of two numbers which differ by 3.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..2000
EXAMPLE
1 is a member since 12 = 3*4; also 10 = 2*5.
5 is a member since 56 = 7*8; also 54 = 6*9.
MATHEMATICA
Union @@ ((y /. List@ ToRules@ Reduce[x (x+1) == 10^# y +y+1 && x>0 && 10^(#-1) <= y+1 < 10^#, {x, y}, Integers]) & /@ Range[13] /. y->{}) (* Giovanni Resta, Jul 08 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
Edited by N. J. A. Sloane, Apr 15 2007, Jun 27 2009
More terms from Giovanni Resta, Jul 08 2018
STATUS
approved