OFFSET
1,2
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..35
P. De Geest, Palindromic Quasipronics of the form n(n+x)
FORMULA
PROG
(Python)
from itertools import count, islice
def ispal(n): s = str(n); return s == s[::-1]
def agen():
for k in count(0):
if ispal(k*(k+6)):
yield k*(k+6)
print(list(islice(agen(), 19))) # Michael S. Branicky, Jan 25 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
a(20) and beyond from Michael S. Branicky, Jan 25 2022
STATUS
approved