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!)
A268687 a(n) = MAX(g_k(n)) where g_k(n) is the function defined in A266202. 3
0, 1, 2, 3, 11, 31, 191, 1023 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
g_1(4) = b_2(4)-1 = b_2(2^2)-1 = 3^2-1 = 8;
g_2(4) = b_3(2*3+2)-1 = 2*4 + 2-1 = 9;
g_3(4) = b_4(2*4 + 1 ) -1 = 2*5 + 1-1 = 10;
g_4(4) = b_5(2*5) -1= 2*6 - 1 = 11;
g_5(4) = b_6(6+5)-1 = 7+5-1 = 11;
g_6(4) = b_7(7+4)-1 = 8+4-1 = 11;
g_7(4) = b_8(8+3)-1 = 9+3-1 = 11;
g_8(4) = b_9(9+2)-1 = 10+2-1 = 11;
g_9(4) = b_10(10+1)-1 = 11+1-1 = 11;
g_10(4) = b_11(11)-1 = 12-1 = 11;
g_11(4) = b_12(11)-1 = 11-1 = 10;
g_12(4) = b_13(10)-1 = 10-1 = 9;
g_13(4) = b_14(9)-1 = 9-1 = 8;
g_21(4) = 0;
So a(4)=11.
PROG
(PARI) g(n, k) = {if (n == 0, return (k)); wn = k; for (k=2, n+1, pd = Pol(digits(wn, k)); wn = subst(pd, x, k+1) - 1; ); wn; }
a(n) = {vg = []; ok = 1; ns = 0; while(ok, newg = g(ns, n); vg = concat(vg, newg); if (newg <= 0, ok = 0); ns++; ); vmax = vecmax(vg); vmax; } \\ Michel Marcus, Apr 04 2016; corrected Jun 13 2022
CROSSREFS
Sequence in context: A235625 A032357 A144056 * A062630 A300771 A296005
KEYWORD
nonn,more
AUTHOR
Natan Arie Consigli, Apr 02 2016
EXTENSIONS
a(6)-a(7) from Michel Marcus, Apr 04 2016
STATUS
approved

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 23 11:25 EDT 2024. Contains 371913 sequences. (Running on oeis4.)