OFFSET
1,1
LINKS
V. Raman, Table of n, a(n) for n = 1..10000
EXAMPLE
47 is in the sequence because the period of the Fibonacci / Lucas numbers (mod 47) = 32, is not 2*(47+1) = 96.
PROG
(PARI) forprime(p=3, 3000, if(p%5==2||p%5==3, a=1; b=0; c=1; while(a!=0||b!=1, c++; d=a; a=b; a=(a+d)%p; b=d%p); if(c!=(2*(p+1)), print1(p", ")))) \\ V. Raman, Nov 22 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
V. Raman, Sep 01 2012
EXTENSIONS
Definition corrected by V. Raman, Nov 22 2012
STATUS
approved