OFFSET
0,4
COMMENTS
Sequence obeys the Benford law about distribution of first digit d in a sequence: P(d) = log_10(1+1/d).
EXAMPLE
a(10) = 1 since A000213(10) = 193.
MATHEMATICA
t = {1, 1, 1}; Do[AppendTo[t, t[[-1]] + t[[-2]] + t[[-3]]], {100}]; Table[IntegerDigits[i][[1]], {i, t}]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Carmine Suriano, Feb 14 2011
EXTENSIONS
Offset changed by Georg Fischer, Jun 26 2024
STATUS
approved