OFFSET
1,1
MATHEMATICA
a[1] = 7; a[n_] := a[n] = Block[{k = 2}, While[k*a[n - 1] != ToExpression[ StringReverse[ ToString[k*a[n - 1]]]], k++ ]; k*a[n - 1]]; Table[a[n], {n, 1, 14}]
NestList[Module[{k=2}, While[!PalindromeQ[k #], k++]; k #]&, 7, 10] (* The program generates the first 11 terms of the sequence. *) (* Harvey P. Dale, Feb 07 2025 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Mar 01 2002
EXTENSIONS
STATUS
approved
