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.

A380290 a(n) = [x^n] G(x)^n, where G(x) = Product_{k >= 1} 1/(1 - x^k)^(k^2) is the g.f. of A023871.

Original entry on oeis.org

1, 1, 11, 73, 539, 3976, 30107, 229811, 1771803, 13749742, 107305836, 841211966, 6619647419, 52258136399, 413682035393, 3282569032273, 26101575743771, 207930807629248, 1659134361686186, 13258065574274885, 106084302933126364, 849845499077000534, 6815530442695480418, 54712839001004065090
Offset: 0

Views

Author

Peter Bala, Jan 19 2025

Keywords

Comments

Given an integer sequence {f(n) : n >= 0} with f(0) = 1, there is a unique power series F(x) with rational coefficients, where F(0) = 1, such that f(n) = [x^n] F(x)^n. F(x) is given by F(x) = series_reversion(x/E(x)), where E(x) = exp(Sum_{n >= 1} f(n)*x^n/n). Furthermore, if the series E(x) has integer coefficients then the series F(x) also has integer coefficients and the sequence {f(n)} satisfies the Gauss congruences: f(n*p^r) == f(n*p^(r-1)) (mod p^r) for all primes p and positive integers n and r (by Stanley, Ch. 5, Ex. 5.2(a), p. 72 and the Lagrange inversion formula).
Thus the present sequence satisfies the Gauss congruences. In fact, stronger congruences appear to hold for the present sequence.
We conjecture that a(p) == 1 (mod p^3) for all primes p >= 7 (checked up to p = 61).
More generally, we conjecture that the supercongruence a(n*p^r) == a(n*p^(r-1)) (mod p^(3*r)) holds for all primes p >= 7 and positive integers n and r. Some examples are given below.

Examples

			Examples of supercongruences:
a(7) - a(1) = 229811 - 1 = 2*5*(7^3)*67 == 0 (mod 7^3)
a(3*7) - a(3) = 849845499077000534 - 73 = (7^3)*29243*84727410689 == 0 (mod 7^3)
a(19) - a(1) = 13258065574274885 - 1 = (2^2)*11*(19^3)*29*26723*56687 == 0 (mod 19^3)
		

References

  • R. P. Stanley. Enumerative combinatorics. Vol. 2, volume 62 of Cambridge Studies in Advanced Mathematics. Cambridge University Press, Cambridge, 1999.

Crossrefs

Programs

  • Maple
    with(numtheory):
    G(x) := series(exp(add(sigma[3](k)*x^k/k, k = 1..23)),x,24):
    seq(coeftayl(G(x)^n, x = 0, n), n = 0..23);
  • Mathematica
    Table[SeriesCoefficient[Product[1/(1 - x^k)^(n*k^2), {k, 1, n}], {x, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Jul 30 2025 *)
    (* or *)
    Table[SeriesCoefficient[Exp[n*Sum[DivisorSigma[3, k]*x^k/k, {k, 1, n}]], {x, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Jul 30 2025 *)

Formula

a(n) = [x^n] exp(n*Sum_{k >= 1} sigma_3(k)*x^k/k).
a(n) ~ c * d^n / sqrt(n), where d = 8.20432131153340331179513077696629277558952852444670658917204305357709... and c = 0.2513708881073263860977360125648021910598660424705749139651716452651... - Vaclav Kotesovec, Jul 30 2025