OFFSET
1,1
COMMENTS
Related to Pisano periods. Other than the initial term 10, these are a subset of the terms of A071774 multiplied by 10, where A071774 are numbers m such that Fibonacci numbers mod m = 2*(m+1). All A071774 terms multiplied by 10 have Pisano periods 3*(n+10) or (n+10). This sequence is the 3*(n+10) subset. A229467 is the n+10 subset.
LINKS
Matthew Goers, Table of n, a(n) for n = 1..74
EXAMPLE
The Pisano period of the Fibonacci numbers mod 30 = 120, which is 3*(30+10).
The Pisano period of the Fibonacci numbers mod 1570 = 4740, which is 3*(1570+10).
MATHEMATICA
t = {}; Do[a = {1, 0}; a0 = a; k = 0; While[k++; s = Mod[Plus @@ a, n]; a = RotateLeft[a]; a[[2]] = s; k <= 3*(n + 10) && a != a0]; If[k == 3*(n + 10), AppendTo[t, n]], {n, 2, 10000}]; t (* T. D. Noe, Oct 02 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Matthew Goers, Sep 24 2013
STATUS
approved