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!)
A319583 Numbers in base 10 that are palindromic in bases 2, 4, and 16. 1

%I #38 Nov 12 2023 12:22:01

%S 0,1,3,5,15,17,51,85,255,257,273,771,819,1285,1365,3855,4095,4097,

%T 4369,12291,13107,20485,21845,61455,65535,65537,65793,69649,69905,

%U 196611,197379,208947,209715,327685,328965,348245,349525,983055,986895,1044735,1048575

%N Numbers in base 10 that are palindromic in bases 2, 4, and 16.

%C Intersection of A006995, A014192, and A029730.

%C This sequence is infinite as it contains 15*(1 + 16^k) for any k > 0. - _Rémy Sigrist_, Sep 23 2018

%C Palindromes in base 16 whose nonzero base-16 digits are either all 1, all 3, all 5 or all F (15). - _Robert Israel_, Nov 12 2023

%H Robert Israel, <a href="/A319583/b319583.txt">Table of n, a(n) for n = 1..10000</a>

%e 255 is 11111111 in binary, 3333 in quaternary and FF in hexadecimal. Hence 255 is in the sequence.

%e Although 21 is 10101 in binary and 111 in quaternary, it is 15 in hexadecimal and therefore not in the sequence.

%p extend:= proc(x, d)

%p local a,b,m;

%p if d::odd then

%p m:= (d-1)/2;

%p a:= x mod 16^(m+1);

%p b:= floor(x/16^m);

%p a + 16^(m+1)*b

%p else

%p m:= d/2;

%p a:= x mod 16^m;

%p b:= floor(x/16^m);

%p (a + 16^(m+1)*b, a + 16^m * (a mod 16) + 16^(m+1)*b)

%p fi

%p end proc:

%p V:= [1,3,5,15]: R:= 0, op(V):

%p for d from 1 to 6 do

%p V:= map(extend,V,d);

%p R:= R, op(V);

%p od:

%p R; # _Robert Israel_, Nov 12 2023

%t palQ[n_, b_] := PalindromeQ[IntegerDigits[n, b]];

%t Reap[Do[If[palQ[n, 2] && palQ[n, 4] && palQ[n, 16], Print[n]; Sow[n]], {n, 0, 10^6}]][[2, 1]] (* _Jean-François Alcover_, Sep 25 2018 *)

%o (Sage) [n for n in (0..1000) if Word(n.digits(2)).is_palindrome() and Word(n.digits(4)).is_palindrome() and Word(n.digits(16)).is_palindrome()]

%o (Magma) [n: n in [0..2*10^7] | Intseq(n, 2) eq Reverse(Intseq(n, 2)) and Intseq(n, 4) eq Reverse(Intseq(n, 4)) and Intseq(n, 16) eq Reverse(Intseq(n, 16))]; // _Vincenzo Librandi_, Sep 24 2018

%Y Cf. A006995 (base 2), A014192 (base 4), and A029730 (base 16).

%K nonn,base,look

%O 1,3

%A _Jeremias M. Gomes_, Sep 23 2018

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 27 13:50 EDT 2024. Contains 372019 sequences. (Running on oeis4.)