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

A082973
Fibonacci numbers which are of the form Sum{i=1..k} prime(i) for some k.
0
OFFSET
0,1
EXAMPLE
5 is in the sequence because 5 is both Fibonacci(5) and 2+3. 2584 is Fibonacci(18) and 2+3+5+7+11+...+151+157 (first 37 primes)
PROG
(PARI) { ps=2; pc=1; fc=1; while (fc<50, while (ps<=fibonacci(fc), if (ps==fibonacci(fc), print1(ps"; "fc", ")); ps+=prime(pc++)); fc++) }
CROSSREFS
Sequence in context: A101341 A079014 A215436 * A306747 A187604 A082815
KEYWORD
nonn,bref
AUTHOR
Jon Perry, May 28 2003
STATUS
approved