|
Search: id:A082973
|
|
|
| A082973 |
|
Fibonacci numbers which are of the form Sum{i=1..k} prime(i) for some k. |
|
+0 1
|
| |
|
|
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)
|
|
PROGRAM
|
(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: A119748 A101341 A079014 this_sequence A082815 A115893 A057678
Adjacent sequences: A082970 A082971 A082972 this_sequence A082974 A082975 A082976
|
|
KEYWORD
|
nonn,bref
|
|
AUTHOR
|
Jon Perry (perry(AT)globalnet.co.uk), May 28 2003
|
|
|
Search completed in 0.002 seconds
|