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

A330353 Expansion of e.g.f. Sum_{k>=1} (exp(x) - 1)^k / (k * (1 - (exp(x) - 1)^k)).

Original entry on oeis.org

1, 4, 18, 112, 810, 7144, 73458, 850672, 11069370, 161190904, 2575237698, 44571447232, 836188737930, 16970931765064, 368985732635538, 8524290269083792, 208874053200038490, 5428866923032585624, 149250273758730282978, 4318265042184721248352
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 11 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Sum[(Exp[x] - 1)^k/(k (1 - (Exp[x] - 1)^k)), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    Table[Sum[StirlingS2[n, k] (k - 1)! DivisorSigma[1, k], {k, 1, n}], {n, 1, 20}]

Formula

E.g.f.: -Sum_{k>=1} log(1 - (exp(x) - 1)^k).
E.g.f.: A(x) = log(B(x)), where B(x) = e.g.f. of A167137.
G.f.: Sum_{k>=1} (k - 1)! * sigma(k) * x^k / Product_{j=1..k} (1 - j*x), where sigma = A000203.
exp(Sum_{n>=1} a(n) * log(1 + x)^n / n!) = g.f. of the partition numbers (A000041).
a(n) = Sum_{k=1..n} Stirling2(n,k) * (k - 1)! * sigma(k).
a(n) ~ n! * Pi^2 / (12 * (log(2))^(n+1)). - Vaclav Kotesovec, Dec 14 2019

A330354 Expansion of e.g.f. Sum_{k>=1} log(1 + x)^k / (k * (1 - log(1 + x)^k)).

Original entry on oeis.org

1, 2, 1, 21, -122, 1752, -21730, 309166, -4521032, 70344768, -1173530712, 21642745704, -448130571696, 10352684535840, -260101132095888, 6921279885508848, -191813249398678272, 5502934340821289088, -163695952380982280832, 5078687529186002247552
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 11 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Sum[Log[1 + x]^k/(k (1 - Log[1 + x]^k)), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    Table[Sum[StirlingS1[n, k] (k - 1)! DivisorSigma[1, k], {k, 1, n}], {n, 1, 20}]

Formula

E.g.f.: -Sum_{k>=1} log(1 - log(1 + x)^k).
E.g.f.: A(x) = log(B(x)), where B(x) = e.g.f. of A306042.
exp(Sum_{n>=1} a(n) * (exp(x) - 1)^n / n!) = g.f. of the partition numbers (A000041).
a(n) = Sum_{k=1..n} Stirling1(n,k) * (k - 1)! * sigma(k), where sigma = A000203.
Conjecture: a(n) ~ n! * (-1)^n * Pi^2 * exp(n) / (24 * (exp(1) - 1)^(n+1)). - Vaclav Kotesovec, Dec 16 2019

A330351 Expansion of e.g.f. -Sum_{k>=1} log(1 - (exp(x) - 1)^k) / k.

Original entry on oeis.org

1, 3, 11, 57, 359, 2793, 25871, 273297, 3268199, 44132313, 659178431, 10710083937, 189256343639, 3636935896233, 75228664345391, 1657133255788977, 38770903634692679, 964609458391250553, 25470259163197390751, 709595190213796188417
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 11 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[-Sum[Log[1 - (Exp[x] - 1)^k]/k, {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    Table[Sum[StirlingS2[n, k] (k - 1)! DivisorSigma[0, k], {k, 1, n}], {n, 1, 20}]

Formula

E.g.f.: Sum_{i>=1} Sum_{j>=1} (exp(x) - 1)^(i*j) / (i*j).
E.g.f.: log(Product_{k>=1} 1 / (1 - (exp(x) - 1)^k)^(1/k)).
G.f.: Sum_{k>=1} (k - 1)! * tau(k) * x^k / Product_{j=1..k} (1 - j*x), where tau = A000005.
a(n) = Sum_{k=1..n} Stirling2(n,k) * (k - 1)! * tau(k).
a(n) ~ n! * (log(n) + 2*gamma - log(2) - log(log(2))) / (n * (log(2))^n), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Dec 14 2019

A330493 a(n) = Sum_{k=1..n} (-1)^(n-k) * Stirling1(n,k) * (k-1)! * tau(k), where tau = A000005.

Original entry on oeis.org

1, 3, 12, 70, 492, 4298, 43894, 514666, 6830888, 101473632, 1664125944, 29858266392, 582481147440, 12281821373040, 278257595964576, 6739505703156192, 173785740554811264, 4754455742416944000, 137571331202872821504, 4197696814883284962048
Offset: 1

Views

Author

Vaclav Kotesovec, Dec 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[(-1)^(n-k) * StirlingS1[n, k] * (k-1)! * DivisorSigma[0, k], {k, 1, n}], {n, 1, 20}]
    nmax = 20; Rest[CoefficientList[Series[-Sum[Log[1 - Log[1/(1 - x)]^k]/k, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!]
  • PARI
    a(n) = sum(k=1, n, (-1)^(n-k)*stirling(n, k, 1)*(k-1)!*numdiv(k)); \\ Michel Marcus, Dec 16 2019

Formula

E.g.f.: -Sum_{k>=1} log(1 - log(1/(1 - x))^k) / k.
a(n) ~ n! * (log(n) + 2*gamma - log(exp(1) - 1)) / (n * (1 - exp(-1))^n), where gamma is the Euler-Mascheroni constant A001620.

A330498 Expansion of e.g.f. Sum_{k>=1} log(1 + log(1/(1 - x))^k) / k.

Original entry on oeis.org

0, 1, 1, 6, 24, 152, 1230, 12646, 141274, 1730984, 23920800, 379364664, 6766026168, 131337466608, 2713274041296, 59397879195456, 1386647548658496, 34745321580075648, 934708252265232768, 26835517455387452928, 815158892950448937984
Offset: 0

Views

Author

Vaclav Kotesovec, Dec 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 20; CoefficientList[Series[Sum[Log[1+Log[1/(1-x)]^k]/k, {k, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!

Formula

a(n) ~ n! * c / (n * (1 - exp(-1))^n), where c = 0.6931..., conjecture: c = log(2).
Showing 1-5 of 5 results.