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.

Previous Showing 11-14 of 14 results.

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

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 2, 2, 0, 1, 1, 2, 2, 2, 0, 1, 1, 2, 3, 4, 3, 0, 1, 1, 2, 3, 4, 5, 4, 0, 1, 1, 2, 3, 5, 6, 7, 5, 0, 1, 1, 2, 3, 5, 6, 9, 9, 6, 0, 1, 1, 2, 3, 5, 7, 10, 12, 13, 8, 0, 1, 1, 2, 3, 5, 7, 10, 13, 16, 16, 10, 0, 1, 1, 2, 3, 5, 7, 11, 14, 19, 22, 22, 12, 0
Offset: 0

Views

Author

Ilya Gutkovskiy, May 11 2017

Keywords

Comments

A(n,k) is the number of partitions of n in which no parts are multiples of k.
A(n,k) is also the number of partitions of n into at most k-1 copies of each part.

Examples

			Square array begins:
  1,  1,  1,  1,  1,  1,  ...
  0,  1,  1,  1,  1,  1,  ...
  0,  1,  2,  2,  2,  2,  ...
  0,  2,  2,  3,  3,  3,  ...
  0,  2,  4,  4,  5,  5,  ...
  0,  3,  5,  6,  6,  7,  ...
		

Crossrefs

Main diagonal gives A000041.
Mirror of A061198.

Programs

  • Maple
    b:= proc(n, i, k) option remember; `if`(n=0, [1, 0], `if`(k*i*(i+1)/2[0, l[1]*j]+l)(b(n-i*j, i-1, k)), j=0..min(n/i, k))))
        end:
    A:= (n, k)-> b(n$2, k-1)[1]:
    seq(seq(A(n, 1+d-n), n=0..d), d=0..16);  # Alois P. Heinz, Oct 17 2018
  • Mathematica
    Table[Function[k, SeriesCoefficient[Product[(1 - x^(i k))/(1 - x^i), {i, Infinity}], {x, 0, n}]][j - n + 1], {j, 0, 12}, {n, 0, j}] // Flatten
    Table[Function[k, SeriesCoefficient[QPochhammer[x^k, x^k]/QPochhammer[x, x], {x, 0, n}]][j - n + 1], {j, 0, 12}, {n, 0, j}] // Flatten

Formula

G.f. of column k: Product_{j>=1} (1 - x^(k*j))/(1 - x^j).

A213598 Number of partitions of n in which no parts are multiples of 49.

Original entry on oeis.org

1, 1, 2, 3, 5, 7, 11, 15, 22, 30, 42, 56, 77, 101, 135, 176, 231, 297, 385, 490, 627, 792, 1002, 1255, 1575, 1958, 2436, 3010, 3718, 4565, 5604, 6842, 8349, 10143, 12310, 14883, 17977, 21637, 26015, 31185, 37338, 44583, 53174, 63261, 75175, 89134, 105558, 124754, 147273, 173524
Offset: 0

Views

Author

Michael Somos, Jun 14 2012

Keywords

Comments

For n<49 we have a(n)=A000041(n), for n>=49 a(n)!=A000041(n).
In Fricke page 401, he gives the expansion sigma(omega) = q^4 + q^6 + 2q^8 + 3q^10 + 5q^12 + 7q^14 + 11q^16 + 15q^18 + ... where q = exp( Pi i omega).

Examples

			G.f. = 1 + x + 2*x^2 + 3*x^3 + 5*x^4 + 7*x^5 + 11*x^6 + 15*x^7 + 22*x^8 + ...
G.f. = q^2 + q^3 + 2*q^4 + 3*q^5 + 5*q^6 + 7*q^7 + 11*q^8 + 15*q^9 + 22*q^10 + ...
		

References

  • R. Fricke, Die elliptischen Funktionen und ihre Anwendungen, Teubner, 1922, Vol. 2, see p. 401. Eq. (49)

Crossrefs

Cf. A000009 (m=2), A000726 (m=3), A001935 (m=4), A035959 (m=5), A219601 (m=6), A035985 (m=7), A261775 (m=8), A104502 (m=9), A261776 (m=10), A092885 (m=25), this sequence (m=49).

Programs

  • Mathematica
    a[ n_] := SeriesCoefficient[ Product[ 1 - x^k, {k, 49, n, 49}] / Product[ 1 - x^k, {k, n}], {x, 0, n}];
    a[ n_] := SeriesCoefficient[ QPochhammer[ x^49] / QPochhammer[ x], {x, 0, n}]; (* Michael Somos, May 13 2014 *)
  • PARI
    {a(n) = local(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^49 + A) / eta(x + A), n))};

Formula

Expansion of q^(-2) * eta(q^49) / eta(q) in powers of q.
Euler transform of period 49 sequence [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, ...].
Given g.f. A(x) then B(x) = x^2 * A(x) satisfies 0 = f(B(x), B(x^2),
B(x^4)) where f(u, v, w) = u * v * w * (1 - 7*v^2) - (v - w) * (u - v) * (v^2 - u*w).
G.f. is a period 1 Fourier series which satisfies f(-1 / (49 t)) = 1 / (7 f(t)) where q = exp(2 Pi i t).
G.f.: Product_{k>0} (1 - x^(49*k)) / (1 - x^k).
a(n) ~ exp(4*Pi*sqrt(2*n)/7) / (2^(1/4) * 7^(3/2) * n^(3/4)). - Vaclav Kotesovec, Oct 14 2015
a(n) = (1/n)*Sum_{k=1..n} A287926(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Jun 16 2017

A320610 Number of parts in all partitions of n in which no part occurs more than seven times.

Original entry on oeis.org

1, 3, 6, 12, 20, 35, 54, 78, 119, 173, 245, 347, 480, 657, 894, 1193, 1588, 2097, 2745, 3563, 4612, 5916, 7556, 9609, 12150, 15286, 19177, 23924, 29757, 36876, 45533, 56026, 68758, 84080, 102556, 124735, 151315, 183059, 220998, 266101, 319720, 383306, 458569
Offset: 1

Views

Author

Alois P. Heinz, Oct 17 2018

Keywords

Crossrefs

Column k=7 of A210485.
Cf. A261775.

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0, [1, 0], `if`(7*i*(i+1)/2 [0, l[1]*j]+l)(b(n-i*j, min(n-i*j, i-1))), j=0..min(n/i, 7))))
        end:
    a:= n-> b(n$2)[2]:
    seq(a(n), n=1..50);
  • Mathematica
    Table[Length[Flatten[Select[IntegerPartitions[n], Max[Tally[#][[All, 2]]] <= 7 &]]], {n, 43}] (* Robert Price, Jul 31 2020 *)

Formula

a(n) ~ 3^(5/4) * log(2) * exp(Pi*sqrt(7*n/3)/2) / (2^(3/2) * 7^(1/4) * Pi * n^(1/4)). - Vaclav Kotesovec, Oct 18 2018

A336767 The number of partitions of n into an even number of parts, each part occurring at most seven times, minus the number of partitions of n into an odd number of parts, each part occurring at most seven times.

Original entry on oeis.org

1, -1, 0, -1, 1, -1, 1, -1, 1, -1, 2, -1, 2, -2, 2, -3, 2, -2, 3, -3, 3, -4, 4, -4, 4, -5, 5, -6, 6, -6, 7, -7, 7, -8, 9, -9, 10, -10, 11, -12, 13, -13, 14, -15, 15, -17, 18, -18, 20, -21, 22, -23, 24, -25, 27, -29, 30, -32, 33, -35, 37, -39, 40, -43, 45, -47, 50
Offset: 0

Views

Author

Jeremy Lovejoy, Aug 04 2020

Keywords

Crossrefs

Formula

G.f.: Product_{n>0} ((1-q^(8*n))/(1+q^n)).
Previous Showing 11-14 of 14 results.