login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A028565 Palindromes of form k*(k+7). 2
0, 8, 44, 494, 858, 49494, 445544, 819918, 4462644, 8853588, 8913198, 81099018, 441525144, 882060288, 8100990018, 44105250144, 49781418794, 85831713858, 447597795744, 810009900018, 889249942988, 4410052500144, 4450696960544, 4927434347294, 80512566521508, 81000099000018 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..49
FORMULA
a(n) = A028564(n) * (A028564(n) + 7). - Michael S. Branicky, Jan 26 2022
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+7)):
yield k*(k+7)
print(list(islice(agen(), 28))) # Michael S. Branicky, Jan 26 2022
CROSSREFS
Sequence in context: A112908 A264819 A350128 * A366338 A129553 A174643
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
a(23) and beyond from Michael S. Branicky, Jan 26 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)