login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A004398 Fibonacci(n+1) plus n-th prime. 1
3, 5, 8, 12, 19, 26, 38, 53, 78, 118, 175, 270, 418, 653, 1034, 1650, 2643, 4242, 6832, 11017, 17784, 28736, 46451, 75114, 121490, 196519, 317914, 514336, 832149, 1346382, 2178436, 3524709, 5703024, 9227604, 14930501, 24157968, 39088326 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

LINKS

Harvey P. Dale, Table of n, a(n) for n = 1..1000

EXAMPLE

a(5) = sixth fibonacci number + fifth prime = 8 + 11 = 19

MAPLE

f := n -> fibonacci(n+1) + ithprime(n);

MATHEMATICA

With[{nn=40}, Total/@Thread[{Prime[Range[nn]], Fibonacci[Range[2, nn+1]]}]] (* From Harvey P. Dale, Dec 18 2011 *)

PROG

(PARI) A004398(n) = fibonacci(n+1) + prime(n)

(MAGMA) [Fibonacci(n+1) + NthPrime(n): n in [1..50]]; // Vincenzo Librandi, Apr 20 2011

CROSSREFS

Sequence in context: A164653 A001973 A020745 * A055606 A147879 A147880

Adjacent sequences:  A004395 A004396 A004397 * A004399 A004400 A004401

KEYWORD

nonn

AUTHOR

Hegermann, Frank (hegermann(AT)oi.dbv.commerzbank.dbp.de)

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 05:09 EST 2012. Contains 205570 sequences.