OFFSET
0,4
COMMENTS
LINKS
Mihai Caragiu and Robert G. Wilson v, Table of n, a(n) for n = 0..500
Mihai Caragiu, Mathematical Trips.
Mihai Caragiu and Ashley Risch, An Euler-Fibonacci Sequence, Far East Journal of Mathematical Sciences 52 (1), 1 - 7 (May 2011)
FORMULA
a(n) = phi( a(n-1) + a(n-2) + 1) with a(0) = 0 & a(1) = 1.
MATHEMATICA
a[0] = 0; a[1] = 1; a[n_] := a[n] = EulerPhi[a[n - 1] + a[n - 2] + 1]; Array[a, 50, 0]
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==EulerPhi[a[n-1]+a[n-2]+1]}, a, {n, 50}] (* Harvey P. Dale, Feb 16 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Mihai Caragiu and Robert G. Wilson v, Sep 04 2013
STATUS
approved