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!)
A296654 a(n) = a(n-1)^(n-1) + a(n-2)^(n-1) with a(0)=0 and a(1)=1. 0
0, 1, 1, 2, 9, 6577, 12306631859123175706, 3474043529146829488927111861423483193112729272713962664092676147662131025218002457407344065137809384265569709358945 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
It appears as though the logarithm of the logarithm of each term i.e. log(log(a(n)) forms a linear curve; albeit there is little evidence to substantiate that this observation holds.
LINKS
EXAMPLE
For n=2, a(2) = 1^(2-1) + 0^(2-1) = 1^1 + 0^1 = 1;
for n=3, a(3) = 1^(3-1) + 1^(3-1) = 1^2 + 1^2 = 2.
MATHEMATICA
RecurrenceTable[{a[0] == 0, a[1] == 1, a[n] == a[n - 1]^(n - 1) + a[n - 2]^(n - 1)}, a, {n, 0, 8}] (* Bruno Berselli, Dec 28 2017 *)
Fold[Append[#1, #1[[#2 + 1]]^(#2) + #1[[#2]]^(#2)] &, {0, 1}, Range@ 6] (* Michael De Vlieger, Jan 14 2018 *)
nxt[{n_, a_, b_}]:={n+1, b, a^n+b^n}; NestList[nxt, {1, 0, 1}, 7][[All, 2]] (* Harvey P. Dale, Sep 30 2019 *)
PROG
(PARI) a(n) = if (n<=1, n, a(n-1)^(n-1) + a(n-2)^(n-1)); \\ Michel Marcus, Dec 28 2017
CROSSREFS
Cf. A175980.
Sequence in context: A208214 A280256 A175980 * A027734 A328201 A028581
KEYWORD
nonn,easy
AUTHOR
James M. Saker, Dec 17 2017
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 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)