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.

A090632 Given n boxes labeled 1..n, such that box i weighs 3i grams and can support a total weight of i grams; a(n) = number of stacks of boxes that can be formed such that no box is squashed.

Original entry on oeis.org

1, 2, 3, 5, 7, 9, 12, 15, 18, 22, 26, 30, 36, 42, 48, 56, 64, 72, 82, 92, 102, 114, 126, 138, 153, 168, 183, 201, 219, 237, 258, 279, 300, 324, 348, 372, 400, 428, 456, 488, 520, 552, 588, 624, 660, 700, 740, 780, 826, 872, 918, 970, 1022, 1074, 1132, 1190, 1248
Offset: 0

Views

Author

N. J. A. Sloane, Dec 13 2003

Keywords

Comments

Even bisection of A064986 up to a(47) = 780, but a(48) = 826 != A064986(96) = 825. - Georg Fischer, May 05 2025

Crossrefs

Programs

  • Maple
    p:=1/(1-q)^2/product((1-q^(3*4^i)), i=0..5): s:=series(p,q,100): for n from 0 to 99 do printf(`%d,`, coeff(s,q,n)) od: # James Sellers, Dec 23 2005

Formula

More generally, let a_k(n), k > 1, denote the number of stacks of boxes that can be formed such that no box is squashed wherein we have n boxes labeled 1..n such that box i weighs k*i grams and can support a total weight of i grams. Then a_k(n) has g.f. 1/((1-x)^2*Product_{i>=0} (1-x^(k*(k+1)^i))). - George Andrews, James Sellers and Vladeta Jovovic, May 26 2005 (corrected May 31 2005)

Extensions

More terms from Vladeta Jovovic, May 22 2005
Further terms from James Sellers, Dec 23 2005