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.

A383354 Squares of plane partition numbers.

Original entry on oeis.org

1, 1, 9, 36, 169, 576, 2304, 7396, 25600, 79524, 250000, 737881, 2187441, 6175225, 17363889, 47320641, 127622209, 336135556, 876219201, 2240128900, 5666777284, 14112014436, 34772925625, 84554753089, 203576025636, 484461937089, 1142215875025, 2665572144964, 6166451098756
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 24 2025

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 28; CoefficientList[Series[Product[1/(1 - x^k)^k, {k, 1, nmax}], {x, 0, nmax}], x]^2

Formula

a(n) = [(x*y)^n] Product_{k>=1} 1 / ((1 - x^k) * (1 - y^k))^k.
a(n) = A000219(n)^2.