VOOZH about

URL: https://oeis.org/A010891

⇱ A010891 - OEIS


login
A010891
Inverse of 5th cyclotomic polynomial.
17
1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 1
OFFSET
0,1
COMMENTS
D(n):= a(n+3) appears in the formula 2*exp(2*Pi*n*i/5) = (A(n) + B(n)*phi) + (C(n) + D(n)*phi)*sqrt(2 + phi)*i, with the golden section phi, i = sqrt(-1) and A(n) = A164116(n+5), B(n) = A080891(n) and C(n) = A156174(n+4) for n >= 0. See one of the comments on A164116. - Wolfdieter Lang, Feb 26 2014
Periodic with period length 5. - Ray Chandler, Apr 03 2017
FORMULA
G.f.: 1/ ( 1+x+x^2+x^3+x^4 ). - R. J. Mathar, Mar 11 2011
MAPLE
with(numtheory, cyclotomic); c := n->series(1/cyclotomic(n, x), x, 80);
# Alternative:
A010891 := proc(n)
op(1+(n mod 5), [1, -1, 0, 0, 0]) ;
end proc:
seq(A010891(n), n=0..20) ; # R. J. Mathar, Feb 27 2025
MATHEMATICA
CoefficientList[Series[1/Cyclotomic[5, x], {x, 0, 100}], x] (* Vincenzo Librandi, Apr 03 2014 *)
PROG
(PARI) Vec(1/polcyclo(5)+O(x^99)) \\ Charles R Greathouse IV, Mar 24 2014
(Magma) &cat[[1, -1, 0, 0, 0]: n in [0..20]]; // Vincenzo Librandi, Apr 03 2014
CROSSREFS
Sequence in context: A015439 A016379 A016339 * A014019 A016349 A016392
KEYWORD
sign,easy
AUTHOR
STATUS
approved