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!)
A029960 Numbers that are palindromic in base 15. 5

%I #25 Oct 17 2020 04:21:50

%S 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,32,48,64,80,96,112,128,144,160,

%T 176,192,208,224,226,241,256,271,286,301,316,331,346,361,376,391,406,

%U 421,436,452,467,482,497,512,527,542,557,572,587,602,617

%N Numbers that are palindromic in base 15.

%C Cilleruelo, Luca, & Baxter prove that this sequence is an additive basis of order (exactly) 3. - _Charles R Greathouse IV_, May 04 2020

%H John Cerkan, <a href="/A029960/b029960.txt">Table of n, a(n) for n = 1..10000</a>

%H Javier Cilleruelo, Florian Luca and Lewis Baxter, <a href="https://doi.org/10.1090/mcom/3221">Every positive integer is a sum of three palindromes</a>, Mathematics of Computation, Vol. 87, No. 314 (2018), pp. 3023-3055, <a href="http://arxiv.org/abs/1602.06208">arXiv preprint</a>, arXiv:1602.06208 [math.NT], 2017.

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

%H Phakhinkon Phunphayap and Prapanpong Pongsriiam, <a href="https://doi.org/10.13140/RG.2.2.23202.79047">Estimates for the Reciprocal Sum of b-adic Palindromes</a>, 2019.

%H <a href="/index/Ab#basis_03">Index entries for sequences that are an additive basis</a>, order 3.

%F Sum_{n>=2} 1/a(n) = 3.66254285... (Phunphayap and Pongsriiam, 2019). - _Amiram Eldar_, Oct 17 2020

%t f[n_,b_]:=Module[{i=IntegerDigits[n,b]},i==Reverse[i]];lst={};Do[If[f[n,15],AppendTo[lst,n]],{n,7!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Jul 08 2009 *)

%t Select[Range@ 620, PalindromeQ@ IntegerDigits[#, 15] &] (* _Michael De Vlieger_, May 13 2017, Version 10.3 *)

%o (PARI) isok(n) = my(d=digits(n, 15)); d == Vecrev(d); \\ _Michel Marcus_, May 14 2017

%Y Palindromes in bases 2 through 14: A006995, A014190, A014192, A029952, A029953, A029954, A029803, A029955, A002113, A029956, A029957, A029958, A029959.

%K nonn,base,easy

%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.)