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!)
A153867 Primes which are the sum of four consecutive Fibonacci numbers. 8
7, 11, 29, 47, 199, 521, 2207, 3571, 9349, 3010349, 54018521, 370248451, 6643838879, 119218851371, 5600748293801, 688846502588399, 32361122672259149, 412670427844921037470771, 258899611203303418721656157249445530046830073044201152332257717521 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
1+1+2+3=7, 1+2+3+5=11, 3+5+8+13=29, 5+8+13+21=47, 21+34+55+89=199,...
LINKS
Harvey P. Dale and others, A005479 and A153867, SeqFan list, Apr 24 2014.
FORMULA
a(n) = A005479(n+2). - R. J. Mathar, Jan 05 2009 [See also link to the SeqFan list. - M. F. Hasler, Apr 24 2014]
MATHEMATICA
a=0; b=1; c=1; lst={}; Do[d=Fibonacci[n]; p=a+b+c+d; If[PrimeQ[p], AppendTo[lst, p]]; a=b; b=c; c=d, {n, 3, 6!}]; lst
Select[Total/@Partition[Fibonacci[Range[500]], 4, 1], PrimeQ] (* Harvey P. Dale, Apr 23 2014 *)
PROG
(PARI) list(lim)=my(v=List(), a=7, b=11); while(a<=lim, if(isprime(a), listput(v, a)); [a, b]=[b, a+b]); Vec(v) \\ Charles R Greathouse IV, Oct 07 2016
CROSSREFS
Primes >3 of A000032 and of A000204.
Sequence in context: A023254 A129807 A045461 * A153325 A109907 A121534
KEYWORD
nonn
AUTHOR
EXTENSIONS
One additional term (a(19)) from Harvey P. Dale, Apr 23 2014
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 April 24 13:30 EDT 2024. Contains 371957 sequences. (Running on oeis4.)