login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 18:53 EDT 2024. Contains 372313 sequences. (Running on oeis4.)