login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A085574
Least k such that n*(n+1)*(n+2) + k is palindromic.
0
0, 9, 6, 1, 2, 7, 1, 7, 9, 11, 55, 38, 42, 83, 34, 98, 71, 46, 17, 99, 75, 77, 31, 51, 21, 35, 98, 82, 102, 32, 87, 49, 23, 84, 44, 89, 11, 15, 86, 6, 1, 33, 18, 39, 89, 625, 567, 111, 571, 731, 585, 17, 341, 341, 11, 445, 537, 182, 672, 802, 566, 68, 182, 1012, 352, 407
OFFSET
1,2
COMMENTS
Conjecture: For all n > 108, a(n) is > 1.
EXAMPLE
a(2)=9 because 2*3*4+9 = 33.
MATHEMATICA
lk[n_]:=Module[{t=n(n+1)(n+2), k=1}, While[IntegerDigits[t+k]!=Reverse[ IntegerDigits[ t+k]], k++]; k]; Join[{0}, Array[lk, 70, 2]] (* Harvey P. Dale, Oct 23 2015 *)
CROSSREFS
Sequence in context: A020783 A075567 A019883 * A194825 A092732 A342680
KEYWORD
base,nonn
AUTHOR
Jason Earls, Jul 06 2003
STATUS
approved