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.

A051342 Smallest prime factor of 1 + (product of first n primes).

Original entry on oeis.org

3, 7, 31, 211, 2311, 59, 19, 347, 317, 331, 200560490131, 181, 61, 167, 953, 73, 277, 223, 54730729297, 1063, 2521, 22093, 265739, 131, 2336993, 960703, 2297, 149, 334507, 5122427, 1543, 1951, 881, 678279959005528882498681487, 87549524399, 23269086799180847
Offset: 1

Views

Author

Keywords

Comments

Based on Euclid's proof that there are infinitely many primes.

Crossrefs

Programs

  • Maple
    a:= proc(n)
    local N, F, i;
      N:= 1 + mul(ithprime(i),i=1..n);
      F:= select(type,map(t->t[1],ifactors(N,easy)[2]),integer);
    if nops(F) >= 1 then return min(F) fi;
      min(map(t->t[1],ifactors(N)[2]))
    end proc:
    seq(a(n),n=1..40); # Robert Israel, Oct 19 2014
  • Mathematica
    Map[FactorInteger,
       Table[Product[Prime[n], {n, 1, m}] + 1, {m, 1, 36}]][[All,
    1]][[All, 1]] (* Geoffrey Critzer, Oct 19 2014 *)
    FactorInteger[#][[1,1]]&/@(FoldList[Times,Prime[Range[40]]]+1) (* Harvey P. Dale, Oct 08 2021 *)
  • PARI
    a(n) = factor(1 + prod(i=1, n, prime(i)))[1, 1]; \\ Michel Marcus, Dec 10 2013

Formula

a(n) = A020639(1+A002110(n)).

Extensions

One more term from Michel Marcus, Dec 10 2013