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.

A176474 From the coefficients (times n!) of the expansion of the Sum_{k>=1} cos(x^k).

Original entry on oeis.org

0, 1, 11, 361, 18479, 1814401, 220207679, 43589145601, 9589093113599, 3210079038566401, 1115080757523532799, 562000363888803840001, 285218528618534141030399, 201645730563302817792000001
Offset: 1

Views

Author

Robert G. Wilson v, Apr 18 2010

Keywords

Crossrefs

Programs

  • Mathematica
    Rest@ Union[ -Range[0, 26]! CoefficientList[ Series[ Sum[ Cos[x^n], {n, 35}], {x, 0, 27}], x]]
  • PARI
    { my(N=33, x='x+O('x^N)); v = Vec(serlaplace(-sum(k=1,N,cos(x^k)))); vector(#v\2-1, k, v[2*k+1])} \\ \\ Joerg Arndt, Apr 21 2017