OFFSET
1,1
COMMENTS
Final digit of a(n) is 1 or 9.
Conjecture: This sequence is just the primes congruent to 11 or 19 mod 20. - Charles R Greathouse IV, May 25 2011 [The conjecture is correct. - Jianing Song, Jun 20 2025]
Note that F(p-1) = F((p-1)/2)*Lucas((p-1)/2), where F = A000045. Since gcd(F(n),Lucas(n)) = 1 or 2 (because Lucas(n)^2 - 5*F(n)^2 = 4*(-1)^n), this sequence lists primes p such that p divides F(p-1) but does not divides F((p-1)/2). By Propositions 1.1 and 1.2 (the k = 3 case) of my link below, this is primes p == 11, 19 (mod 20). - Jianing Song, Jun 20 2025
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Vincenzo Librandi)
Jianing Song, Entry points and periods of Lucas sequences
Eric Weisstein's World of Mathematics, Gaussian Prime.
Eric Weisstein's World of Mathematics, Lucas Number.
MATHEMATICA
Select[Prime[Range[1000]], IntegerQ[(Fibonacci[(#1-1)/2-1]+Fibonacci[(#1-1)/2+1])/#1]&]
PROG
(PARI) lista(kmax) = {my(lucas1 = 1, lucas2 = 3, lucas3, p); for(k = 3, kmax, lucas3 = lucas1 + lucas2; p = 2*k + 1; if(isprime(p) && !(lucas3 % p), print1(p, ", ")); lucas1 = lucas2; lucas2 = lucas3); } \\ Amiram Eldar, Jun 06 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Sep 16 2006
STATUS
approved
