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.

A086124 Primes generated by linear recursion: f(n) = prime(n) * f(n-1) + 2, f(1) = 1.

Original entry on oeis.org

5, 191, 8831183, 559832762721564181, 3655022053493602810873312808337814473758207442937
Offset: 1

Views

Author

Labos Elemer, Jul 23 2003

Keywords

Comments

f(n) = 1, 5, 27, 191, 2103, 27341, 464799, 8831183, 203117211, ... .
a(6) has 298 decimal digits.

Crossrefs

Programs

  • Mathematica
    f[x_] := Prime[x]*f[x-1]+2; f[1]=1; Do[s=f[n]; If[PrimeQ[s], Print[n]], {n, 1, 1000}]

Formula

a(n) = f(A086125(n)).