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!)
A029967 Palindromic in bases 12 and 10. 40

%I #31 Mar 23 2020 03:01:42

%S 0,1,2,3,4,5,6,7,8,9,11,181,555,616,676,737,797,1111,8008,35953,43934,

%T 88888,646646,3192913,5641465,8364638,9963699,133373331,139979931,

%U 293373392,520020025,713171317,796212697,1393223931

%N Palindromic in bases 12 and 10.

%H Robert G. Wilson v, <a href="/A029967/b029967.txt">Table of n, a(n) for n = 1..57</a>

%H Patrick De Geest, <a href="http://www.worldofnumbers.com/nobase10.htm">Palindromic numbers beyond base 10</a>

%t Select[Range[0, 10^5], PalindromeQ[#] && # == IntegerReverse[#, 12] &] (* _Robert Price_, Nov 09 2019 *)

%o (Python)

%o from gmpy2 import digits

%o def palQ(n,b): # check if n is a palindrome in base b

%o s = digits(n,b)

%o return s == s[::-1]

%o def palQgen10(l): # generator of palindromes in base 10 of length <= 2*l

%o if l > 0:

%o yield 0

%o for x in range(1,l+1):

%o for y in range(10**(x-1),10**x):

%o s = str(y)

%o yield int(s+s[-2::-1])

%o for y in range(10**(x-1),10**x):

%o s = str(y)

%o yield int(s+s[::-1])

%o A029967_list = [n for n in palQgen10(5) if palQ(n,12)] # _Chai Wah Wu_, Dec 01 2014

%Y Cf. A007632, A007633, A029961, A029962, A029963, A029964, A029804, A029965, A029966, A029968, A029969, A029970, A029731, A097855, A099165.

%K nonn,base

%O 1,3

%A _Patrick De Geest_

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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)