OFFSET
1,2
COMMENTS
Starting with the second term, cycles every four terms.
Not the same sequence as a(1)=1; a(n)=mod(prime(a(n-1)),10).
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,1).
FORMULA
a(1)=1; a(n)=prime(mod(a(n-1),10)).
G.f.: x -x^2*(2+3*x+5*x^2+11*x^3) / ( (x-1)*(1+x)*(1+x^2) ). - R. J. Mathar, Jun 20 2021
MATHEMATICA
f[s_List] := Block[{}, Append[s, Prime@ Last@ Mod[s, 10]]]; Nest[f, {1}, 93]
CROSSREFS
KEYWORD
nonn,less,easy
AUTHOR
Robert G. Wilson v, May 13 2007
EXTENSIONS
NAME adapted to offset. - R. J. Mathar, Jun 20 2021
STATUS
approved