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.

A139072 Smallest parameter k such that (n+k!)/n is prime.

Original entry on oeis.org

1, 2, 3, 4, 7, 3, 11, 7, 8, 5, 13, 4, 28, 10, 7, 8, 43, 6, 21, 5, 7, 16, 48, 4, 14, 17, 9, 7, 241, 5, 61, 11, 17, 17, 8, 10, 44, 38, 16, 6, 131, 9, 63, 12, 6, 43, 73, 9, 15, 10, 19, 14, 64, 11, 12, 9, 24, 32, 641, 5, 89, 31, 8, 8, 14, 11, 71, 19, 25, 7, 151, 6, 78, 62, 15, 35, 15, 22, 87
Offset: 1

Views

Author

Artur Jasinski, Apr 07 2008

Keywords

Comments

a(n) >= A002034(n). - Charles R Greathouse IV, Jul 15 2011
a(878) > 5000. - Jinyuan Wang, Apr 01 2020

Crossrefs

Programs

  • Mathematica
    a = {}; Do[k = 1; While[ ! PrimeQ[(k! + n)/n], k++ ]; AppendTo[a, k], {n, 1, 100}]; a
  • PARI
    pr(n)=denominator(n)==1 && ispseudoprime(n)
    a(n)=my(k);until(pr(k++!/n+1),);k \\ Charles R Greathouse IV, Jul 15 2011