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.

Showing 1-1 of 1 results.

A093572 Greatest prime factor of Product(k+prime(k): 1<=k<=n).

Original entry on oeis.org

3, 5, 5, 11, 11, 19, 19, 19, 19, 19, 19, 19, 19, 19, 31, 31, 31, 79, 79, 79, 79, 101, 101, 113, 113, 127, 127, 127, 127, 127, 127, 163, 163, 173, 173, 173, 173, 173, 173, 173, 173, 223, 223, 223, 223, 223, 223, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271
Offset: 1

Views

Author

Reinhard Zumkeller, Apr 01 2004

Keywords

Comments

a(n) = A006530(A093570(n)) = A006530(A093571(n));
a(n) = Max(A076556(k): 1<=k<=n).

Crossrefs

Programs

  • Mathematica
    PrimeFactors[n_Integer] := Flatten[ Table[ # [[1]], {1}] & /@ FactorInteger[n]]; Table[ PrimeFactors[ Product[k + Prime[k], {k, n}]][[ -1]], {n, 60}] (* Robert G. Wilson v, Apr 07 2004 *)
    FactorInteger[#][[-1,1]]&/@FoldList[Times,Table[n+Prime[n],{n,60}]] (* Harvey P. Dale, May 27 2016 *)

Extensions

More terms from Robert G. Wilson v, Apr 07 2004
Showing 1-1 of 1 results.