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.

A053608 Numbers x = LCM(1,2,...,k) such that x^2 + 1 is prime.

Original entry on oeis.org

1, 2, 6, 420, 360360, 718766754945489455304472257065075294400
Offset: 1

Views

Author

Labos Elemer, Feb 09 2000

Keywords

Comments

The next term has k > 10^4, if it exists. - Amiram Eldar, Aug 23 2024

Crossrefs

Programs

  • Mathematica
    Select[FoldList[LCM, 1, Select[Range[100], PrimePowerQ]], PrimeQ[#^2 + 1] &] (* Amiram Eldar, Aug 23 2024 *)