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!)
A028558 Numbers k such that k*(k+5) is a palindrome. 1
0, 1, 6, 18, 24, 202, 203, 814, 2067, 2178, 2207, 20402, 25116, 64493, 82566, 207067, 2040402, 2187142, 2233097, 6887078, 79585891, 211313148, 249281986, 8161664181, 22222222222, 26331005924, 81294635989 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Erich Friedman, What's Special About This Number? (See entries 814, 2067.)
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+5)):
yield k
print(list(islice(agen(), 20))) # Michael S. Branicky, Jan 24 2022
CROSSREFS
Sequence in context: A051395 A256266 A228104 * A337324 A140450 A157800
KEYWORD
nonn,base,more
AUTHOR
EXTENSIONS
a(21)-a(27) from Michael S. Branicky, Jan 24 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)