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.

A070520 Prime numbers of form p=Cyclotomic(n,n).

Original entry on oeis.org

3, 13, 17, 31, 9091, 20593, 7027567, 109912203092239643840221, 568972471024107865287021434301977158534824481, 3726767253346131780312487317315864271, 19342489361037647362917398912701853907582504971824424988419390687587
Offset: 1

Views

Author

Labos Elemer, May 02 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Do[s=Cyclotomic[n, n]; If[PrimeQ[s], Print[s]], {n, 2, 256}]; output = the prime value
    Select[Table[Cyclotomic[n,n],{n,300}],PrimeQ] (* Harvey P. Dale, Dec 06 2012 *)