login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A152303
This sequence needs a meaningful name.
0
1, 1, 2, 3, 5, 8, 3, 1, 5, 8, 6, 9, 4, 8, 8, 9, 9, 8, 7, 8, 9, 8, 8, 1, 9, 1, 4, 4, 0, 7, 0, 6, 2, 6, 0, 8, 4, 4, 1, 9, 9, 8, 9, 3, 0, 6, 8, 0, 6, 4, 6, 5, 2, 4, 9, 3, 3, 0, 0, 9, 6, 6, 5, 9, 6, 5, 4, 3, 7, 1, 6, 3, 3, 0, 0, 2, 4, 4, 4, 3, 7, 7, 4, 7, 0, 4, 5, 9, 0, 0, 2, 1, 0, 7, 0, 5, 6, 9, 5, 1, 4
OFFSET
0,3
MATHEMATICA
M = {{0, 1}, {1, 1}}; M1 = {{0, 0}, {1/10, 0}};
v[0] = {1, 1};
v[n_] := v[n] = M.v[n - 1] + Floor[M1.v[n - 1]];
Table[Mod[v[n][[1]], 10], {n, 0, 100}]
CROSSREFS
Sequence in context: A096320 A105955 A003893 * A064737 A246558 A307638
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Dec 02 2008
STATUS
approved