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!)
A265546 a(n) = smallest base-4 palindrome m >= n such that every base-4 digit of n is <= the corresponding base-4 digit of m; m is written in base 10. 1

%I #13 Apr 07 2021 14:23:18

%S 0,1,2,3,5,5,10,15,10,10,10,15,15,15,15,15,17,17,34,51,21,21,38,55,25,

%T 25,42,59,29,29,46,63,34,34,34,51,38,38,38,55,42,42,42,59,46,46,46,63,

%U 51,51,51,51,55,55,55,55,59,59,59,59,63,63,63,63,65,65,130,195,85,85,150,215,105,105,170,235,125,125,190

%N a(n) = smallest base-4 palindrome m >= n such that every base-4 digit of n is <= the corresponding base-4 digit of m; m is written in base 10.

%H Jonathan Frech, <a href="/A265546/b265546.txt">Table of n, a(n) for n = 0..10000</a>

%o (PARI) isok(m, dn) = {my(dm = digits(m, 4)); if ((Vecrev(dm) == dm) && (#dm == #dn), for (i=1, #dn, if (dn[i] > dm[i], return (0))); return(1););}

%o a(n) = {my(dn = digits(n, 4), m = n); while (!isok(m, dn), m++); m;} \\ _Michel Marcus_, Apr 07 2021

%Y Sequences related to palindromic floor and ceiling: A175298, A206913, A206914, A261423, A262038, and the large block of consecutive sequences beginning at A265509.

%K nonn,base

%O 0,3

%A _N. J. A. Sloane_, Dec 10 2015

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 24 07:54 EDT 2024. Contains 371922 sequences. (Running on oeis4.)