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.

Showing 1-2 of 2 results.

A296617 Expansion of 1/Sum_{k>=0} (k+1)^(k+1)*x^k.

Original entry on oeis.org

1, -4, -11, -104, -1388, -22980, -446524, -9882944, -244592124, -6684031040, -199824449532, -6488250797312, -227456440349948, -8565880619584896, -345018776767586572, -14805421633750610240, -674514253891722861612, -32522567276377571337728
Offset: 0

Views

Author

Seiichi Manyama, Dec 19 2017

Keywords

Crossrefs

Programs

  • PARI
    N=66; x='x+O('x^N); Vec(1/sum(k=0, N, (k+1)^(k+1)*x^k))

A296775 Expansion of 1/Sum_{k>=0} A000326(k+1)*x^k.

Original entry on oeis.org

1, -5, 13, -27, 54, -108, 216, -432, 864, -1728, 3456, -6912, 13824, -27648, 55296, -110592, 221184, -442368, 884736, -1769472, 3538944, -7077888, 14155776, -28311552, 56623104, -113246208, 226492416, -452984832, 905969664, -1811939328, 3623878656
Offset: 0

Views

Author

Seiichi Manyama, Dec 20 2017

Keywords

Crossrefs

Programs

  • Magma
    [1,-5,13] cat [-27*(-2)^(n-3): n in [3..50]]; // G. C. Greubel, Jan 04 2023
    
  • Maple
    1,-5,13,seq(-27*(-2)^i,i=0..50); # Robert Israel, Dec 20 2017
  • Mathematica
    CoefficientList[Series[1/Sum[(k+1)*(3*k+2)*x^k/2, {k, 0, 30}], {x, 0, 30}], x] (* Vaclav Kotesovec, Dec 20 2017 *)
    Join[{1, -5, 13}, Table[(-1)^n * 27 * 2^(n-3), {n, 3, 30}]] (* Vaclav Kotesovec, Dec 20 2017 *)
    LinearRecurrence[{-2},{1,-5,13,-27},40] (* Harvey P. Dale, Mar 22 2025 *)
  • PARI
    N=66; my(x='x+O('x^N)); Vec(1/sum(k=0, N, (k+1)*(3*k+2)/2*x^k))
    
  • PARI
    first(n) = Vec((1-x)^3/(1+2*x) + O(x^n)) \\ Iain Fox, Dec 20 2017
    
  • SageMath
    [1,-5,13]+[-27*(-2)^(n-3) for n in range(3,51)] # G. C. Greubel, Jan 04 2023

Formula

a(n) = -2*a(n-1) for n > 3.
For n >= 3, a(n) = (-1)^n * 27 * 2^(n-3). - Vaclav Kotesovec, Dec 20 2017
G.f.: (1-x)^3/(1+2*x). - Robert Israel, Dec 20 2017
E.g.f.: (1/8)*(- 19 + 14*x - 2*x^2 + 27*exp(-2*x) ). - Alejandro J. Becerra Jr., Feb 16 2021
Showing 1-2 of 2 results.