OFFSET
1,2
COMMENTS
For additional terms, see the De Geest link.
LINKS
P. De Geest, Palindromic pronic numbers of the form n(n+1)
Eric Weisstein's World of Mathematics, Palindromic Number.
Eric Weisstein's World of Mathematics, Pronic Number.
MATHEMATICA
Select[Range[500000], PalindromeQ[#(#+1)] &] (* or *) Select[Range[50000], IntegerDigits[#(#+1)] == Reverse[ IntegerDigits[#(#+1)]] &] (* G. C. Greubel, Nov 24 2016 *)
PROG
(PARI) isok(k) = my(d = digits(k*(k+1))); Vecrev(d) == d; \\ Michel Marcus, Nov 09 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Jon E. Schoenfield, Nov 09 2017
STATUS
approved