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.

A070518 Value of n-th cyclotomic polynomial at n.

Original entry on oeis.org

0, 3, 13, 17, 781, 31, 137257, 4097, 532171, 9091, 28531167061, 20593, 25239592216021, 7027567, 2392743361, 4294967297, 51702516367896047761, 34006393, 109912203092239643840221, 25536159601, 7006306553612521, 25405143539623, 949112181811268728834319677753
Offset: 1

Views

Author

Labos Elemer, May 02 2002

Keywords

Comments

a(28341) is divisible by 283411^2. What is the next n such that a(n) is not squarefree? - Jianing Song, Nov 01 2024

Examples

			n=10: 10th cyclotomic polynomial is 1-x+x^2-x^3+x^4; at x=10 it gives a(10)=9091.
		

Crossrefs

Cf. A070519 (indices of prime terms), A088790 (prime indices of prime terms).

Programs

  • Maple
    a:= n-> numtheory[cyclotomic](n$2):
    seq(a(n), n=1..25);  # Alois P. Heinz, Jul 05 2024
  • Mathematica
    Table[Cyclotomic[w, w], {w, 1, 35}]
  • PARI
    a(n) = polcyclo(n, n) \\ Michel Marcus, Apr 02 2016