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

A121569
a(n) = Fibonacci((prime(n)+3)/2) - 1.
0
1, 2, 4, 12, 20, 54, 88, 232, 986, 1596, 6764, 17710, 28656, 75024, 317810, 1346268, 2178308, 9227464, 24157816, 39088168, 165580140, 433494436, 1836311902, 12586269024, 32951280098, 53316291172, 139583862444, 225851433716
OFFSET
2,2
COMMENTS
p = Prime[n] divides a(n) for p = {29,89,101,181,229,349,401,461,509,521,541,709,761,769,809,...} = A047650[n] Primes for which golden mean tau is a quadratic residue or Primes of the form x^2+20y^2.
FORMULA
a(n) = Fibonacci[ (Prime[n]+3)/2 ] - 1, n>1. a(n) = Sum[ Fibonacci[k], {k,1,(p-1)/2} ], p = Prime[n], n>1.
MATHEMATICA
Table[Fibonacci[(Prime[n]+3)/2]-1, {n, 2, 50}]
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Aug 08 2006
STATUS
approved