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.

A316085 Product_{k>=1} 1/(1 - a(k)*x^k) = Sum_{k>=0} (k*x)^k.

Original entry on oeis.org

1, 3, 23, 220, 2800, 42315, 763220, 15710280, 366711200, 9529898752, 273549419552, 8586085364211, 292755986184548, 10772558331396572, 425587704331945152, 17966093939959188380, 807152054953801845760, 38451298338305570267680
Offset: 1

Views

Author

Seiichi Manyama, Jun 23 2018

Keywords

Examples

			1/((1-x)*(1-3*x^2)*(1-23*x^3)*(1-220*x^4)* ... ) = 1 + x + 4*x^2 + 27*x^3 + 256*x^4 + ... .
		

Crossrefs

Formula

a(n) ~ n^n. - Vaclav Kotesovec, Jun 18 2019

A359265 Product_{n>=1} (1 + a(n) * x^n) = 1 + Sum_{n>=1} n^3 * x^n.

Original entry on oeis.org

1, 8, 19, 45, -72, -224, -72, 3465, 1656, -4752, -31248, -440, 62064, 415008, 936432, 6776793, -16454232, -24983784, 74804904, 468856296, 236519784, -2495390904, -8714625696, -8228470832, 62274531168, 155889061848, -47291852448, -1334769988176, -4304113760232
Offset: 1

Views

Author

Seiichi Manyama, Dec 28 2022

Keywords

Crossrefs

Programs

  • Maple
    S:= 1 + x*(x^2 + 4*x + 1)/(x - 1)^4:
    for n from 1 to 30 do
      SS:= series(S,x,n+1);
      A[n]:= coeff(SS,x,n);
      S:= S/(1+A[n]*x^n);
    od:
    seq(A[i],i=1..30); # Robert Israel, Dec 28 2022
Showing 1-2 of 2 results.