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!)
A029965 Palindromic in bases 9 and 10. 57

%I #23 Nov 09 2019 10:40:42

%S 0,1,2,3,4,5,6,7,8,191,282,373,464,555,646,656,6886,25752,27472,42324,

%T 50605,626626,1540451,1713171,1721271,1828281,1877781,1885881,2401042,

%U 2434342,2442442,2450542,3106013,3114113,3122213,3163613

%N Palindromic in bases 9 and 10.

%H Robert G. Wilson v and Ray Chandler, <a href="/A029965/b029965.txt">Table of n, a(n) for n = 1..66</a> (terms < 10^18, first 52 terms from Robert G. Wilson v)

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

%t NextPalindrome[n_] := Block[{l = Floor[ Log[10, n] + 1], idn = IntegerDigits[n]}, If[ Union[idn] == {9}, Return[n + 2], If[l < 2, Return[n + 1], If[ FromDigits[ Reverse[ Take[idn, Ceiling[l/2]] ]] FromDigits[ Take[idn, -Ceiling[l/2]]], FromDigits[ Join[ Take[idn, Ceiling[l/2]], Reverse[ Take[idn, Floor[l/2]] ]]], idfhn = FromDigits[ Take[idn, Ceiling[l/2]]] + 1; idp = FromDigits[ Join[ IntegerDigits[idfhn], Drop[ Reverse[ IntegerDigits[idfhn]], Mod[l, 2]] ]]] ]]]; palQ[n_Integer, base_Integer] := Block[{idn = IntegerDigits[n, base]}, idn == Reverse[idn]]; l = {0}; a = 0; Do[a = NextPalindrome[a]; If[ palQ[a, 9], AppendTo[l, a]], {n, 10000}]; l (* _Robert G. Wilson v_, Sep 30 2004 *)

%t pQ[n_,k_]:=Reverse[x=IntegerDigits[n,k]]==x; t={}; Do[If[pQ[n,10] && pQ[n,9],AppendTo[t,n]],{n,3.2*10^6}]; t (* _Jayanta Basu_, May 25 2013 *)

%t Select[Range[0, 10^5],

%t PalindromeQ[#] && # == IntegerReverse[#, 9] &] (* _Robert Price_, Nov 09 2019 *)

%Y Cf. A007632, A007633, A029961, A029962, A029963, A029964, A029804, A029966, A029967, 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 May 6 07:22 EDT 2024. Contains 372290 sequences. (Running on oeis4.)