OFFSET
1,2
COMMENTS
After 1 step enters a cycle of length 63.
LINKS
N. J. A. Sloane and others, Sequences of RADD type, OEIS wiki.
Index entries for linear recurrences with constant coefficients, signature (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1).
FORMULA
a(n) = 43 + A004086(a(n-1)) for n > 1, a(1) = 1. - Alois P. Heinz, Nov 07 2019
MAPLE
a:= proc(n) option remember; `if`(n=1, 1, 43 +(s-> parse(
cat(seq(s[-i], i=1..length(s)))))(cat("", a(n-1))))
end:
seq(a(n), n=1..65); # Alois P. Heinz, Nov 07 2019
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 11 2006
EXTENSIONS
a(43)-a(52) corrected and more terms added by Alois P. Heinz, Nov 07 2019
STATUS
approved