OFFSET
1,3
COMMENTS
Also: numbers k such that the sum of the first k even composites is palindromic. Sequence is 4 + 6 + 8 + 10 + 12 + 14 + ... + z. For values of z see A058851. (Comment added by author 12/2000.)
All numbers of the form 3*10^j - 2 for j >= 0 are terms. For n > 1, a(n) mod 10 is one of {1,3,4,6,8,9}. - Chai Wah Wu, Feb 20 2021
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..40
Patrick De Geest, Palindromic Quasipronics
Patrick De Geest, Palindromic Sums 2
Erich Friedman, What's Special About This Number? (See entries 298, 2126, 2998.)
MATHEMATICA
(Sqrt[4#+9]-3)/2&/@Select[Table[k(k+3), {k, 0, 3*10^6}], PalindromeQ] (* The program generates the first 22 terms of the sequence. *) (* Harvey P. Dale, Oct 03 2023 *)
PROG
(Python)
n, m, A028553_list = 0, 0, []
while n < 10**12:
s = str(m)
if s == s[::-1]:
A028553_list.append(n)
m += 2*(n+2)
n += 1 # Chai Wah Wu, Feb 20 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Chai Wah Wu, Feb 20 2021
STATUS
approved