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.

A100262 Expansion of A(x)^2, where A(x) = o.g.f. of n^n (A000312).

Original entry on oeis.org

1, 2, 9, 62, 582, 6978, 102339, 1779222, 35809052, 819103178, 20987183525, 595341928814, 18519658804818, 626784970780690, 22926284614808071, 901188628763393606, 37882728189752349304, 1695744102631158083866
Offset: 0

Views

Author

Ralf Stephan, Nov 20 2004

Keywords

Examples

			(1 + x + 4x^2 + 27x^3 + 256x^4 +...)^2 = 1 + 2x + 9x^2 + 62x^3 +...
		

Crossrefs

Programs

  • Mathematica
    nn=17;f[x_]=1+Sum[n^n x^n,{n,1,nn}];CoefficientList[Series[f[x]^2,{x,0,nn}],x] (* Geoffrey Critzer, Nov 05 2013 *)
  • PARI
    a(n) = sum(k=0, n, k^k*(n-k)^(n-k)); \\ Seiichi Manyama, Dec 03 2021

Formula

a(n) = Sum_{k=0..n} k^k * (n-k)^(n-k). - Tilman Neumann, Dec 13 2008
a(n) ~ 2 * n^n. - Vaclav Kotesovec, Dec 03 2021

A349874 Expansion of A(x)^3, where A(x) is g.f. of n^n (A000312).

Original entry on oeis.org

1, 3, 15, 106, 990, 11688, 168529, 2886039, 57372984, 1299676869, 33049616319, 931991169660, 28856822050546, 972979199567826, 35480222492288493, 1391109691131953417, 58351612093156552572, 2607190821521732751855, 123613763047459102476027
Offset: 0

Views

Author

Vaclav Kotesovec, Dec 03 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[(1 + Sum[n^n * x^n, {n,1,nmax}])^3, {x,0,nmax}],x]

Formula

a(n) ~ 3 * n^n.
Showing 1-2 of 2 results.