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

A328784
Integers k such that the k-th prime divides the k-th Lucas number.
0
2, 4, 5, 608, 1221, 60264, 205965, 994856, 69709961, 3140421767
OFFSET
1,1
MAPLE
a:= 1:
b:= 2:
p:= 2:
Res:= NULL:
for n from 2 to 10^6 do
c:= a+b;
b:= a;
a:= c;
p:= nextprime(p);
if a mod p = 0 then
Res:= Res, n;
fi
od:
Res; # Robert Israel, Oct 30 2019
PROG
(Magma) [n: n in [1..100000] | IsZero(Lucas(n) mod NthPrime(n))];
CROSSREFS
Cf. A075702 (analog with Fibonacci).
Sequence in context: A105288 A242915 A066684 * A128124 A182687 A141062
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(8) from Robert Israel, Oct 30 2019
a(9)-a(10) from Daniel Suteu, Nov 07 2019
STATUS
approved