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-8 of 8 results.

A104502 Number of partitions where no part is a multiple of 9.

Original entry on oeis.org

1, 1, 2, 3, 5, 7, 11, 15, 22, 29, 41, 54, 74, 96, 128, 165, 216, 275, 354, 447, 569, 712, 896, 1113, 1388, 1712, 2117, 2595, 3186, 3882, 4735, 5739, 6959, 8392, 10121, 12150, 14582, 17429, 20823, 24789, 29494, 34979, 41456, 48993, 57856, 68148, 80204
Offset: 0

Views

Author

Eric W. Weisstein, Mar 11 2005

Keywords

Comments

Coefficients of the B-Dyson Mod 27 identity.
Also partitions where parts are repeated at most 8 times. - Joerg Arndt, Dec 31 2012

Examples

			G.f. = 1 + q + 2*q^2 + 3*q^3 + 5*q^4 + 7*q^5 + 11*q^6 + 15*q^7 + 22*q^8 + 29*q^9 + ...
B(q) = q + q^4 + 2*q^7 + 3*q^10 + 5*q^13 + 7*q^16 + 11*q^19 + 15*q^22 + ...
		

References

  • F. J. Dyson, A walk through Ramanujan's garden, pp. 7-28 of G. E. Andrews et al., editors, Ramanujan Revisited. Academic Press, NY, 1988, see p. 15, eq. (11).

Crossrefs

Number of r-regular partitions for r = 2 through 12: A000009, A000726, A001935, A035959, A219601, A035985, A261775, A104502, A261776, A328545, A328546.

Programs

  • Maple
    seq(coeff(series(mul((1-x^(9*k))/(1-x^k),k=1..n),x,n+1), x, n), n = 0 .. 50); # Muniru A Asiru, Sep 29 2018
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 - x^(9*k))/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 31 2015 *)
    a[n_] := a[n] = (1/n) Sum[DivisorSum[k, Boole[!Divisible[#, 9]] #&] a[n-k], {k, 1, n}]; a[0] = 1;
    a /@ Range[0, 50] (* Jean-François Alcover, Oct 01 2019, after Seiichi Manyama *)
    Table[Count[IntegerPartitions@n, x_ /; ! MemberQ [Mod[x, 9], 0, 2] ], {n, 0, 46}] (* Robert Price, Jul 29 2020 *)
  • PARI
    {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^9 + A) / eta(x + A), n))}; /* Michael Somos, Jan 09 2006 */
    
  • PARI
    {A116607(n)=sigma(n)-if(n%9==0, 9*sigma(n/9))}
    {a(n)=polcoeff(exp(sum(k=1, n+1, A116607(k)*x^k/k+x*O(x^n))), n)} /* Paul D. Hanna, Jun 13 2011 */

Formula

Expansion of q^(-1/3) * eta(q^9) / eta(q) in powers of q. - Michael Somos, Jan 09 2006
Euler transform of period 9 sequence [1, 1, 1, 1, 1, 1, 1, 1, 0, ...]. - Michael Somos, Jan 09 2006
Given g.f. A(x), then B(q) = q * A(q^3) satisfies 0 = f(B(q), B(q^2)) where f(u, v) = u^3 + v^3 - u*v - 3*(u*v)^2. - Michael Somos, Jan 09 2006
G.f.: Product_{k>0} (1-x^(9k))/(1-x^k) = 1 + 1/(1-x)*(Sum_{k>0} x^(k^2+k) Product_{i=1..k} (1+x^i+x^(2i))/((1-x^(2i))*(1-x^(2i+1))))
G.f. A(x) = 1/g.f. A062246.
Logarithmic derivative yields A116607 (sum of the divisors of n which are not divisible by 9). - Paul D. Hanna, Jun 13 2011
a(n) ~ 2*Pi * BesselI(1, 4*sqrt(3*n + 1) * Pi/9) / (9*sqrt(3*n + 1)) ~ exp(4*Pi*sqrt(n/3)/3) / (sqrt(2) * 3^(7/4) * n^(3/4)) * (1 + (2*Pi/(9*sqrt(3)) - 9*sqrt(3)/(32*Pi)) / sqrt(n) + (2*Pi^2/243 - 405/(2048*Pi^2) - 5/16) / n). - Vaclav Kotesovec, Aug 31 2015, extended Jan 14 2017
a(n) = (1/n)*Sum_{k=1..n} A116607(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 25 2017
G.f. is a period 1 Fourier series that satisfies f(-1 / (81 t)) = 1/3 g(t) where g() is the g.f. for A062246. - Michael Somos, Jun 27 2017

Extensions

Simplified definition. - N. J. A. Sloane, Oct 20 2019

A070048 Number of partitions of n into odd parts in which no part appears more than thrice.

Original entry on oeis.org

1, 1, 1, 2, 1, 2, 3, 3, 4, 5, 6, 7, 8, 9, 11, 13, 16, 18, 21, 24, 27, 32, 36, 41, 48, 54, 61, 70, 78, 88, 100, 112, 127, 143, 159, 179, 199, 222, 248, 276, 308, 342, 380, 421, 465, 516, 570, 629, 697, 767, 845, 932, 1022, 1124, 1236, 1355, 1488, 1631, 1785, 1954, 2136
Offset: 0

Views

Author

N. J. A. Sloane, May 09 2002

Keywords

Comments

Also number of partitions of n into distinct parts in which no part is multiple of 4. - Vladeta Jovovic, Jul 31 2004
McKay-Thompson series of class 64a for the Monster group.
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).

Examples

			G.f. = 1 + x + x^2 + 2*x^3 + x^4 + 2*x^5 + 3*x^6 + 3*x^7 + 4*x^8 + 5*x^9 + ...
T64a = 1/q + q^7 + q^15 + 2*q^23 + q^31 + 2*q^39 + 3*q^47 + 3*q^55 + 4*q^63 + ...
		

Crossrefs

Cf. A000700 (m=2), A003105 (m=3), A096938 (m=5), A261770 (m=6), A097793 (m=7), A261771 (m=8), A112193 (m=9), A261772 (m=10).

Programs

  • Haskell
    a070048 = p a042968_list where
       p _      0 = 1
       p (k:ks) m = if m < k then 0 else p ks (m - k) + p ks m
    -- Reinhard Zumkeller, Oct 01 2012
  • Mathematica
    a[ n_] := SeriesCoefficient[ QPochhammer[ -x, x^2] QPochhammer[ -x^2, x^4], {x, 0, n}]; (* Michael Somos, Jul 01 2014 *)
    a[ n_] := SeriesCoefficient[ QPochhammer[ x^2] QPochhammer[ x^4] / (QPochhammer[ x] QPochhammer[ x^8]), {x, 0, n}]; (* Michael Somos, Jul 01 2014 *)
  • PARI
    {a(n) = local(A); if( n<0, 0 ,A = x * O(x^n); polcoeff( eta(x^2 + A) * eta(x^4 + A) / (eta(x + A) * eta(x^8 + A)), n))};
    

Formula

G.f.: Product_{i>0} (1+x^i)/(1+x^(4*i)). - Vladeta Jovovic, Jul 31 2004
Expansion of chi(x) * chi(x^2) = psi(x) / psi(-x^2) = phi(-x^4) / psi(-x) = chi(-x^4) / chi(-x) in powers of x where phi(), psi(), chi() are Ramanujan theta functions. - Michael Somos, Jul 01 2014
Expansion of q^(1/8) * eta(q^2) * eta(q^4) / (eta(q) * eta(q^8)) in powers of q.
Euler transform of period 8 sequence [1, 0, 1, -1, 1, 0, 1, 0, ...].
Given g.f. A(x), then B(q) = A(q^8) / q satisfies 0 = f(B(q), B(q^3)) where f(u, v) = (u - v^3) * (u^3 - v) + 3*u*v. - Michael Somos, Jul 01 2014
G.f.: Product_{k>0} (1 - x^(8*k - 4)) / (1 - x^(2*k - 1)).
a(n) ~ exp(sqrt(n)*Pi/2) / (4*n^(3/4)) * (1 - (3/(4*Pi) + Pi/32) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017

Extensions

Additional comments from Michael Somos, Dec 04 2002

A096938 McKay-Thompson series of class 60F for the Monster group.

Original entry on oeis.org

1, 1, 1, 2, 2, 2, 3, 4, 4, 6, 7, 8, 10, 12, 14, 16, 19, 22, 26, 30, 35, 41, 47, 54, 62, 70, 80, 92, 104, 118, 135, 152, 171, 194, 218, 244, 275, 308, 344, 386, 432, 481, 537, 598, 664, 738, 819, 908, 1006, 1114, 1232, 1362, 1503, 1658, 1828, 2012, 2214, 2436, 2676
Offset: 0

Views

Author

Noureddine Chair, Aug 18 2004

Keywords

Comments

The inverted graded parafermionic partition function.
Also number of partitions of n into parts congruent to {1,3,7,9} mod 10. Also number of partitions of n into odd parts parts in which no part appears more than 4 times.
Number of partitions of n into distinct parts in which no part is a multiple of 5.
This generating function is a generalization of the sequences A003105 and A006950. It arose in my recent work on partial supersymmetry in writing the graded parafermionic partition function in which I obtained a more general formula.

Examples

			a(8)=4, the number of partitions into distinct parts that exclude the number 5 because we can write 8=7+1=6+2=4+3+1.
T60F = 1/q + q^5 + q^11 + 2*q^17 + 2*q^23 + 2*q^29 + 3*q^35 + 4*q^41 +...
		

References

  • T. M. Apostol, An Introduction to Analytic Number Theory, Springer-Verlag, NY, 1976

Crossrefs

Cf. A133563.
Cf. A000700 (m=2), A003105 (m=3), A070048 (m=4), A261770 (m=6), A097793 (m=7), A261771 (m=8), A112193 (m=9), A261772 (m=10).

Programs

  • Maple
    series(product(1/(1-x^k+x^(2*k)-x^(3*k)+x^(4*k)),k+1..150),x=0,100);
  • Mathematica
    CoefficientList[ Series[ Product[1/(1 - x^k + x^(2k) - x^(3k) + x^(4k)), {k, 70}], {x, 0, 60}], x] (* Robert G. Wilson v, Aug 19 2004 *)
    nmax = 50; CoefficientList[Series[Product[(1 + x^k) / (1 + x^(5*k)), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 31 2015 *)
    QP = QPochhammer; s = QP[q^2]*(QP[q^5]/(QP[q]*QP[q^10])) + O[q]^60; CoefficientList[s, q] (* Jean-François Alcover, Nov 12 2015 *)
  • PARI
    {a(n)=local(A); if(n<0,0, A=x*O(x^n); polcoeff( eta(x^2+A)*eta(x^5+A)/eta(x+A)/eta(x^10+A), n))} /* Michael Somos, Jan 18 2005 */

Formula

Euler transform of period 10 sequence [1, 0, 1, 0, 0, 0, 1, 0, 1, 0, ...]. - Vladeta Jovovic, Aug 19 2004
Expansion of q^(1/6)eta(q^2)eta(q^5)/(eta(q)eta(q^10)) in powers of q.
Given g.f. A(x), then B(x)=(A(x^6)/x)^2 satisfies 0=f(B(x), B(x^2)) where f(u, v)=(u^3+v^3)(1+uv)-uv(1-uv)^2. - Michael Somos, Jan 18 2005
G.f.: 1/product_{k>=1} (1-x^k+x^(2*k)-x^(3*k)+x^(4*k)) = 1/Product_{k>0} P10(x^k) where P10 is the 10th cyclotomic polynomial.
a(n) ~ exp(2*Pi*sqrt(n/15)) / (2 * 15^(1/4) * n^(3/4)) * (1 - (3*sqrt(15)/(16*Pi) + Pi/(6*sqrt(15))) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017

Extensions

Definition corrected by Vladeta Jovovic, Aug 19 2004
More terms from Robert G. Wilson v, Aug 19 2004

A097793 McKay-Thompson series of class 56B for the Monster group.

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 4, 4, 5, 7, 8, 10, 12, 14, 17, 21, 24, 28, 34, 39, 46, 53, 61, 71, 82, 94, 108, 124, 142, 162, 185, 210, 238, 271, 306, 345, 390, 439, 494, 556, 623, 698, 783, 875, 977, 1092, 1216, 1354, 1508, 1674, 1859, 2064, 2286, 2532, 2803, 3098, 3424
Offset: 0

Views

Author

Michael Somos, Aug 24 2004

Keywords

Comments

Number of partitions of n into distinct parts not divisible by 7.
Also McKay-Thompson series of class 56C for Monster. - Michel Marcus, Feb 19 2014

Examples

			1 + x + x^2 + 2*x^3 + 2*x^4 + 3*x^5 + 4*x^6 + 4*x^7 + 5*x^8 + 7*x^9 + 8*x^10 +...
T56B = 1/q + q^3 + q^7 + 2q^11 + 2q^15 + 3q^19 + 4q^23 + 4q^27 +...
		

Crossrefs

Cf. A113297.
Cf. A000700 (m=2), A003105 (m=3), A070048 (m=4), A096938 (m=5), A261770 (m=6), A261771 (m=8), A112193 (m=9), A261772 (m=10).

Programs

  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 + x^k) / (1 + x^(7*k)), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 31 2015 *)
    QP = QPochhammer; s = QP[q^2]*(QP[q^7]/(QP[q]*QP[q^14])) + O[q]^60; CoefficientList[s, q] (* Jean-François Alcover, Nov 12 2015 *)
  • PARI
    {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( prod( k=1, n, 1 + x^k, 1 + A) / prod( k=1, n\7, 1 + x^(7*k), 1 + A), n))}
    
  • PARI
    {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A) * eta(x^7 + A) / (eta(x + A) * eta(x^14 + A)), n))}

Formula

Euler transform of period 14 sequence [ 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, ...].
Expansion of q^(1/4) * eta(q^2) * eta(q^7) / (eta(q) * eta(q^14)) in powers of q.
G.f.: Product_{k>0} (1 + x^k) / (1 + x^(7*k)).
a(n) ~ exp(Pi*sqrt(2*n/7)) / (2 * 14^(1/4) * n^(3/4)) * (1 - (3*sqrt(7)/ (8*Pi*sqrt(2)) + Pi/(4*sqrt(14))) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017

A261770 Expansion of Product_{k>=1} (1 + x^k) / (1 + x^(6*k)).

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 3, 4, 5, 6, 8, 9, 11, 13, 16, 19, 22, 26, 30, 35, 41, 47, 55, 63, 73, 84, 96, 110, 125, 143, 162, 184, 208, 235, 266, 300, 338, 380, 427, 479, 536, 600, 670, 748, 834, 929, 1034, 1149, 1277, 1417, 1571, 1740, 1925, 2129, 2351, 2596, 2863
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 31 2015

Keywords

Comments

a(n) is the number of partitions of n into distinct parts where no part is a multiple of 6. - Joerg Arndt, Aug 31 2015

Crossrefs

Cf. A261736.
Cf. A000700 (m=2), A003105 (m=3), A070048 (m=4), A096938 (m=5), A097793 (m=7), A261771 (m=8), A112193 (m=9), A261772 (m=10).
Column k=6 of A290307.

Programs

  • Maple
    b:= proc(n, i) option remember;  local r;
          `if`(2*n>i*(i+1)-(j-> 6*j*(j+1))(iquo(i, 6, 'r')), 0,
          `if`(n=0, 1, b(n, i-1)+`if`(i>n or r=0, 0, b(n-i, i-1))))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..80);  # Alois P. Heinz, Aug 31 2015
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 + x^k) / (1 + x^(6*k)), {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(Pi*sqrt(5*n/2)/3) * 5^(1/4) / (2^(7/4) * sqrt(3) * n^(3/4)) * (1 - (9/(4*Pi*sqrt(10)) + 5*Pi*sqrt(5/2)/144) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017
G.f.: Product_{k>=1} (1 - x^(12*k-6))/(1 - x^(2*k-1)). - Ilya Gutkovskiy, Dec 07 2017

A261771 Expansion of Product_{k>=1} (1 + x^k) / (1 + x^(8*k)).

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 4, 5, 5, 7, 9, 10, 13, 15, 18, 22, 26, 30, 36, 42, 49, 58, 67, 77, 89, 103, 118, 136, 156, 177, 203, 231, 263, 299, 338, 383, 433, 489, 550, 620, 696, 781, 877, 981, 1097, 1227, 1369, 1526, 1702, 1893, 2104, 2339, 2595, 2877, 3189, 3530
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 31 2015

Keywords

Comments

a(n) is the number of partitions of n into distinct parts where no part is a multiple of 8.

Crossrefs

Cf. A261735.
Cf. A000700 (m=2), A003105 (m=3), A070048 (m=4), A096938 (m=5), A261770 (m=6), A097793 (m=7), A112193 (m=9), A261772 (m=10).
Column k=8 of A290307.

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
           [0, 1, 0, 1, 0, 1, 0, 1, -1, 1, 0, 1, 0, 1, 0, 1]
           [1+irem(d, 16)], d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..80);  # Alois P. Heinz, Aug 31 2015
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 + x^k) / (1 + x^(8*k)), {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(Pi*sqrt(7*n/6)/2) * 7^(1/4) / (4 * 6^(1/4) * n^(3/4)) * (1 - (3*sqrt(3)/ (2*Pi*sqrt(14)) + 7*Pi*sqrt(7)/(96*sqrt(6))) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017
G.f.: Product_{k>=1} (1 - x^(16*k-8))/(1 - x^(2*k-1)). - Ilya Gutkovskiy, Dec 07 2017

A261772 Expansion of Product_{k>=1} (1 + x^k) / (1 + x^(10*k)).

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 4, 5, 6, 8, 9, 11, 14, 16, 20, 24, 28, 33, 40, 46, 54, 64, 74, 86, 100, 115, 133, 154, 176, 202, 231, 263, 300, 342, 388, 440, 499, 563, 636, 718, 808, 909, 1022, 1146, 1284, 1439, 1608, 1797, 2006, 2236, 2490, 2772, 3081, 3422, 3800, 4212
Offset: 0

Views

Author

Vaclav Kotesovec, Aug 31 2015

Keywords

Comments

a(n) is the number of partitions of n into distinct parts where no part is a multiple of 10.
In general, if m > 1 and g.f. = Product_{k>=1} (1 + x^k)/(1 + x^(m*k)), then a(n) ~ exp(Pi*sqrt((m-1)*n/(3*m))) * (m-1)^(1/4) / (2^(3/2) * 3^(1/4) * m^(1/4) * n^(3/4)) * (1 - (3*sqrt(3*m)/(8*Pi*sqrt(m-1)) + (m-1)^(3/2)*Pi/(48*sqrt(3*m))) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017

Crossrefs

Cf. A145707.
Cf. A000700 (m=2), A003105 (m=3), A070048 (m=4), A096938 (m=5), A261770 (m=6), A097793 (m=7), A261771 (m=8), A112193 (m=9).
Column k=10 of A290307.

Programs

  • Maple
    b:= proc(n, i) option remember;  local r;
          `if`(2*n>i*(i+1)-(j-> 10*j*(j+1))(iquo(i, 10, 'r')), 0,
          `if`(n=0, 1, b(n, i-1)+`if`(i>n or r=0, 0, b(n-i, i-1))))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..80);  # Alois P. Heinz, Aug 31 2015
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 + x^k) / (1 + x^(10*k)), {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp(Pi*sqrt(3*n/10)) * 3^(1/4) / (2^(7/4) * 5^(1/4) * n^(3/4)) * (1 - (sqrt(15)/(4*Pi*sqrt(2)) + 3*Pi*sqrt(3)/(16*sqrt(10))) / sqrt(n)). - Vaclav Kotesovec, Aug 31 2015, extended Jan 21 2017
G.f.: Product_{k>=1} (1 - x^(20*k-10))/(1 - x^(2*k-1)). - Ilya Gutkovskiy, Dec 07 2017

A290307 Square array A(n,k), n >= 0, k >= 1, read by antidiagonals, where column k is the expansion of Product_{j>=1} (1 + x^j)/(1 + x^(k*j)).

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 2, 1, 2, 1, 0, 1, 1, 1, 2, 2, 2, 2, 1, 0, 1, 1, 1, 2, 2, 2, 3, 3, 2, 0, 1, 1, 1, 2, 2, 3, 3, 3, 3, 2, 0, 1, 1, 1, 2, 2, 3, 3, 4, 4, 3, 2, 0, 1, 1, 1, 2, 2, 3, 4, 4, 4, 5, 4, 2, 0, 1, 1, 1, 2, 2, 3, 4, 4, 5, 6, 6, 5, 3, 0
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 26 2017

Keywords

Comments

A(n,k) is the number of partitions of n into distinct parts where no part is a multiple of k.

Examples

			Square array begins:
  1,  1,  1,  1,  1,  1, ...
  0,  1,  1,  1,  1,  1, ...
  0,  0,  1,  1,  1,  1, ...
  0,  1,  1,  2,  2,  2, ...
  0,  1,  1,  1,  2,  2, ...
  0,  1,  2,  2,  2,  3, ...
		

Crossrefs

Programs

  • Mathematica
    Table[Function[k, SeriesCoefficient[Product[(1 + x^i)/(1 + x^(i k)), {i, Infinity}], {x, 0, n}]][j - n + 1], {j, 0, 13}, {n, 0, j}] // Flatten
    Table[Function[k, SeriesCoefficient[QPochhammer[-1, x]/QPochhammer[-1, x^k], {x, 0, n}]][j - n + 1], {j, 0, 13}, {n, 0, j}] // Flatten

Formula

G.f. of column k: Product_{j>=1} (1 + x^j)/(1 + x^(k*j)).
For asymptotics of column k see comment from Vaclav Kotesovec in A261772.
Showing 1-8 of 8 results.