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.

A123975 Number of Garden of Eden partitions of n in Bulgarian Solitaire.

Original entry on oeis.org

0, 0, 1, 1, 2, 3, 5, 7, 10, 14, 20, 27, 37, 49, 66, 86, 113, 147, 190, 243, 311, 394, 499, 627, 786, 980, 1220, 1510, 1865, 2294, 2816, 3443, 4202, 5110, 6203, 7507, 9067, 10923, 13135, 15755, 18865, 22540, 26885, 32001, 38032, 45112, 53430, 63171
Offset: 1

Views

Author

Vladeta Jovovic, Nov 23 2006

Keywords

Comments

a(n) gives the number of times n occurs in A225794. - Antti Karttunen, Jul 27 2013

Crossrefs

Programs

  • Maple
    p:=product(1/(1-q^i), i=1..200)*sum((-1)^(r-1)*q^((3*r^2+3*r)/2), r=1..200):s:=series(p, q, 200): for j from 0 to 199 do printf(`%d,`,coeff(s, q, j)) od: # James Sellers, Nov 30 2006
  • PARI
    my(N=50, x='x+O('x^N)); concat([0, 0], Vec(1/prod(k=1, N, 1-x^k)*sum(k=1, N, (-1)^(k-1)*x^(3*k*(k+1)/2)))) \\ Seiichi Manyama, May 21 2023

Formula

a(n) = A064173(n) - A101198(n).
a(n) = Sum_{j>=1} (-1)^(j+1)*p(n-b(j)) where b(j) = 3*j*(j+1)/2 (A045943) and p(n) is the number of partitions of n (see A000041). See Hopkins & Sellers. - Michel Marcus, Sep 26 2018
a(n) ~ exp(Pi*sqrt(2*n/3)) / (8*n*sqrt(3)) * (1 - (1/(2*Pi) + 19*Pi/144) / sqrt(n/6)). - Vaclav Kotesovec, May 26 2023

Extensions

More terms from James Sellers, Nov 30 2006

A227753 Numbers which do not occur in A226062; numbers which encode Garden of Eden partitions in Bulgarian Solitaire in runlengths of their binary representation.

Original entry on oeis.org

5, 10, 18, 20, 21, 22, 26, 37, 41, 42, 43, 45, 53, 69, 73, 74, 75, 77, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 101, 105, 106, 107, 109, 117, 138, 146, 148, 149, 150, 154, 162, 164, 165, 166, 168, 169, 170, 171, 172, 173, 174, 178, 180, 181, 182, 186, 202
Offset: 1

Views

Author

Antti Karttunen, Jul 26 2013

Keywords

Comments

Positions of zeros in A227752.
A225794 gives the sizes of the corresponding partitions.

Crossrefs

After its first two initial terms, all the terms of A227451 can be found in this sequence.
Showing 1-2 of 2 results.