login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A275009
Table of F[k]_n(2) with rows k >= 0 and columns 0 <= n <= 2.
5
2, 2, 2, 3, 4, 8, 4, 6, 18, 5, 8, 32, 6, 10, 50, 7, 12, 72, 8, 14, 98, 9, 16, 128, 10, 18, 162, 11, 20, 200, 12, 22, 242, 13, 24, 288, 14, 26, 338, 15, 28, 392, 16, 30, 450, 17, 32, 512, 18, 34, 578, 19, 36, 648, 20, 38, 722, 21, 40, 800, 22, 42, 882, 23, 44, 968, 24, 46, 1058
OFFSET
0,1
COMMENTS
F[k]_n(x) is the fast-iteration function defined in A275000.
MATHEMATICA
f[k_, 0, x_] := x + k; f[k_, n_, x_] := Nest[f[k, n - 1, #] &, x, x];
Table[f[k, n, 2], {k, 0, 22}, {n, 0, 2} ]
CROSSREFS
A154714(F[1]_n(2)), A275002(F[n]_3(2)), A275003(F[3]_n(x)), A275004(F[4]_n(x)), A275005(F[5]_n(x)), A275006(F[6]_n(x)).
Sequence in context: A368520 A377083 A095094 * A103894 A022868 A228405
KEYWORD
nonn,tabf
AUTHOR
Natan Arie Consigli, Nov 09 2016
STATUS
approved