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!)
A105554 Primes whose indices are the sum of the first n+1 Fibonacci numbers. 1

%I #13 Aug 14 2023 13:03:40

%S 2,3,7,17,37,71,137,251,457,823,1459,2579,4483,7789,13463,23143,39769,

%T 67927,115823,196681,333227,563971,951553,1603471,2696653,4528921,

%U 7594759,12717701,21275489,35548187,59328121,98921047,164781917

%N Primes whose indices are the sum of the first n+1 Fibonacci numbers.

%C We avoid testing for existence in the script by beginning with x=1.

%C Sum[i=1 to n+1]F(i) = F(n+3) - 1. See equation (18) of the Weisstein reference. - _Jonathan Vos Post_, May 05 2005

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/FibonacciNumber.html">Fibonacci Number.</a>

%F a(n) = prime(F(n+3) - 1) = A000040(A000045(n+3)-1). - _Jonathan Vos Post_, May 05 2005

%e a(1) = prime(Fibonacci(0) + Fibonacci(1)) = prime(0+1) = prime(1) = 2.

%e a(3) = prime(Fibonacci(0) + Fibonacci(1) + Fibonacci(2) + Fibonacci(3)) = prime(4) = 7.

%t Prime[Accumulate[Fibonacci[Range[40]]]] (* _Harvey P. Dale_, Aug 14 2023 *)

%o (PARI) g(n) = s=0;for(x=1,n,s+=fibonacci(x);print1(prime(s)","))

%K easy,nonn

%O 1,1

%A _Cino Hilliard_, May 03 2005

%E Corrected by _T. D. Noe_, Nov 15 2006

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 July 30 08:03 EDT 2024. Contains 374738 sequences. (Running on oeis4.)