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”).

A079348
Fibonacci{p-(p/5)} is the not the first Fibonacci number that p divides.
4
13, 17, 29, 37, 41, 47, 53, 61, 73, 89, 97, 101, 107, 109, 113, 137, 139, 149, 151, 157, 173, 181, 193, 197, 199, 211, 229, 233, 241, 257, 263, 269, 277, 281, 293, 307, 313, 317, 331, 337, 347, 349, 353, 373, 389, 397, 401, 409, 421, 433, 449, 457, 461
OFFSET
1,1
LINKS
EXAMPLE
a(1) = 13 as (13/5) = -1, F(14) = 377 = 13 * 29, however F(7) = 13.
PROG
(PARI) quad5(x)=if (x%5>1 && x%5<4, -1, 1);
forprime (p=7, 500, wss=p-quad5(p); for (n=1, wss, if (fibonacci(n)%p==0, if (n<wss, print1(p", "); break))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon Perry, Jan 04 2003
EXTENSIONS
Offset corrected by Amiram Eldar, Jun 22 2024
STATUS
approved