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.

A144248 Partial sums of A000594.

Original entry on oeis.org

1, -23, 229, -1243, 3587, -2461, -19205, 65275, -48368, -164288, 370324, -620, -578358, -176502, 1040658, 2027794, -4878140, -2150708, 8510712, 1400952, -2818536, -15649224, 2994048, 24283008, -1216217, 12649495, -60629585, -35982417, 92424213, 63212373, 10369205
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A000594.

Programs

  • Mathematica
    lst={};s1=0;Do[s1=s1+RamanujanTau[n];AppendTo[lst,s1],{n,5!}];lst
    Accumulate[Array[RamanujanTau, 30]] (* Amiram Eldar, Jan 08 2025 *)
  • PARI
    a(n)=my(x='x, v=Vec( x * eta(x + x * O(x^(n-1)))^24)); sum(i=1,n,v[i]) \\ Charles R Greathouse IV, Jun 28 2014