A153892 Primes that are the sum of five consecutive Fibonacci numbers.
7, 19, 31, 131, 1453, 2351, 42187, 1981891, 3206767, 13584083, 332484016063, 66165989928299, 146028309791690867, 1619478772188347101, 47020662244482792763, 229030451631542624193448579, 1569798068858809572115420691
Offset: 1
Keywords
Examples
a(1) = 7 = 0+1+1+2+3 is prime; a(2) = 19 = 1+2+3+5+8 is prime; a(3) = 31 = 2+3+5+8+13 is prime, etc.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..29
- Hsin-Yun Ching, Rigoberto Flórez, F. Luca, Antara Mukherjee, and J. C. Saunders, Primes and composites in the determinant Hosoya triangle, arXiv:2211.10788 [math.NT], 2022.
- Hsin-Yun Ching, Rigoberto Flórez, F. Luca, Antara Mukherjee, and J. C. Saunders, Primes and composites in the determinant Hosoya triangle, The Fibonacci Quarterly, 60.5 (2022), 56-110.
Crossrefs
Programs
-
Mathematica
Select[Total/@Partition[Fibonacci[Range[0,150]],5,1],PrimeQ] (* Harvey P. Dale, Jan 13 2013 *)
Comments