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.

A261535 Primes of the form Phi(8,n!), where Phi is the cyclotomic polynomial.

Original entry on oeis.org

2, 17, 1297, 331777, 1503561738404723998944447273369600000001
Offset: 1

Views

Author

Robert Price, Aug 28 2015

Keywords

Comments

a(6) is 730 digits.

Crossrefs

Programs

  • Mathematica
    Select[Table[Cyclotomic[8, n!], {n, 0, 200}], PrimeQ]
  • PARI
    for(n=1, 500, if(isprime(k=polcyclo(8, n!)), print1(k", "))) \\ Altug Alkan, Nov 16 2015