cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A014208 Next prime after n-th Fibonacci number.

Original entry on oeis.org

2, 2, 2, 3, 5, 7, 11, 17, 23, 37, 59, 97, 149, 239, 379, 613, 991, 1601, 2591, 4201, 6779, 10949, 17713, 28661, 46381, 75029, 121403, 196429, 317827, 514243, 832063, 1346273, 2178313, 3524603, 5702897, 9227479
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    [ seq( nextprime(fibonacci(i)),i=0..40) ];
  • Mathematica
    NextPrime/@Fibonacci[Range[0,40]]  (* Harvey P. Dale, Feb 23 2011 *)