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!)
A085764 Least integer m such that between m and 2m there are n palindromes. 2
10, 1, 2, 3, 4, 51, 61, 66, 76, 86, 96, 111, 121, 131, 141, 157, 167, 177, 187, 197, 202, 212, 222, 232, 242, 258, 268, 278, 288, 298, 303, 313, 323, 333, 343, 359, 369, 379, 389, 399, 404, 414, 424, 434, 444, 460, 470, 480, 490, 500, 501, 5101, 5201, 5301 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Dean Hickerson showed that this sequence is infinite.
LINKS
PROG
(Python)
def ispal(n): s = str(n); return s == s[::-1]
def a(n):
m, cm = 1, 2
while cm != n:
cm = cm - ispal(m) + ispal(2*m+1) + ispal(2*m+2)
m += 1
return m
print([a(n) for n in range(1, 55)]) # Michael S. Branicky, Oct 01 2021
CROSSREFS
Sequence in context: A213790 A240962 A324282 * A090555 A283393 A359736
KEYWORD
nonn,base
AUTHOR
Jason Earls and Amarnath Murthy, Jul 22 2003
EXTENSIONS
More terms from Jason Earls, Jul 24 2003
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)