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

A274265 a(n) = (3*n - 1)^(n-1).

Original entry on oeis.org

1, 5, 64, 1331, 38416, 1419857, 64000000, 3404825447, 208827064576, 14507145975869, 1125899906842624, 96549157373046875, 9065737908494995456, 925103102315013629321, 101938319743841411792896, 12063348350820368238715343, 1525878906250000000000000000
Offset: 1

Views

Author

Peter Bala, Jun 19 2016

Keywords

Comments

Compare with A052752.

Crossrefs

Programs

Formula

E.g.f. A(x) = 1 - exp(-1/3*T(3*x)) = x + 5*x^2/2! + 8^2*x^3/3! + 11^3*x^4/4! + 14^4*x^5/5! + ..., where T(x) = Sum_{n >= 1} n^(n-1)*x^n/n! is Euler's tree function - see A000169.
A(x) = series reversion( (1 - x)^3*log(1/(1 - x)) ). See A274266.
1 - A(x) = exp(-x/(1 - A(x))^3) = exp(-x/(exp(-3*x/(exp(-3*x/ ...))))).
1 - A(-x*exp(3*x)) = exp(x) = 1/(1 - A(x*exp(-3*x))).
1/(1 - A(x)) = Sum_{n >= 0} (3*n + 1)^(n-1)*x^n/n!, the e.g.f. for A052752.

A274269 a(n) = (5*n - 1)^(n-1).

Original entry on oeis.org

1, 9, 196, 6859, 331776, 20511149, 1544804416, 137231006679, 14048223625216, 1628413597910449, 210832519264920576, 30155888444737842659, 4722366482869645213696, 803596764671634487466709, 147653612273582215982104576, 29134419507545592909032289199
Offset: 1

Views

Author

Peter Bala, Jun 19 2016

Keywords

Comments

Compare with A052782.

Crossrefs

Programs

Formula

E.g.f. A(x) = 1 - exp(-1/5*T(5*x)) = x + 9*x^2/2! + 14^2*x^3/3! + 19^3*x^4/4! + 24^4*x^5/5! + ..., where T(x) = Sum_{n >= 1} n^(n-1)*x^n/n! is Euler's tree function - see A000169.
A(x) = series reversion( (1 - x)^5*log(1/(1 - x)) ). See A274270.
1 - A(x) = exp(-x/(1 - A(x))^5) = exp(-x/(exp(-5*x/(exp(-5*x/ ...))))).
1 - A(-x*exp(5*x)) = exp(x) = 1/(1 - A(x*exp(-5*x))).
1/(1 - A(x)) = Sum_{n >= 0} (5*n + 1)^(n-1)*x^n/n!, the e.g.f. for A052782.

A274270 Expansion of e.g.f. (1 + x)^5*log(1 + x).

Original entry on oeis.org

1, 9, 47, 154, 274, 120, -120, 240, -720, 2880, -14400, 86400, -604800, 4838400, -43545600, 435456000, -4790016000, 57480192000, -747242496000, 10461394944000, -156920924160000, 2510734786560000, -42682491371520000, 768284844687360000, -14597412049059840000
Offset: 1

Views

Author

Peter Bala, Jun 19 2016

Keywords

Comments

The first six terms [1, 9, 47, 154, 274, 120] form row 5 of A105954 read as a triangular array.

Examples

			E.g.f.= x + 9*x^2/2 + 47*x^3/3! + 154*x^4/4! + 274*x^5/5! + 120*x^6/6! - 120*x^7/7! + ....
		

Crossrefs

Programs

  • Magma
    [1,9,47,154,274] cat [(-1)^n*120*Factorial(n - 6): n in [6..25]]; // Vincenzo Librandi, Jun 20 2016
  • Mathematica
    CoefficientList[Series[(1+t)^5 * Log[1+t], {t,1,20}],t]*Range[1,20]! (* G. C. Greubel, Jun 19 2016 *)

Formula

a(n) = (-1)^n*120*(n - 6)! for n >= 6.
E.g.f.: A(x) = (1 + x)^5*log(1 + x).
Series reversion(A(x)) = exp(-1/5*T(-5*x)) - 1 = x - 9*x^2/2! + 14^2*x^3/3! - 19^3*x^4/4! + 24^4*x^5/5! - ... is the e.g.f. for a signed version of A274269, where T(x) = Sum_{n >= 1} n^(n-1)*x^n/n! is Euler's tree function - see A000169.
Sum_{n>=1} 1/a(n) = 5098232/4462227 + 1/(120*e). - Amiram Eldar, Feb 02 2023

A274268 Expansion of e.g.f. (1 + x)^4*log(1 + x).

Original entry on oeis.org

1, 7, 26, 50, 24, -24, 48, -144, 576, -2880, 17280, -120960, 967680, -8709120, 87091200, -958003200, 11496038400, -149448499200, 2092278988800, -31384184832000, 502146957312000, -8536498274304000, 153656968937472000, -2919482409811968000, 58389648196239360000
Offset: 1

Views

Author

Peter Bala, Jun 19 2016

Keywords

Comments

First five terms [1, 7, 26, 50, 24] form row 4 of A105954 read as a triangular array.

Examples

			E.g.f.= x + 7*x^2/2 + 26*x^3/3! + 50*x^4/4! + 24*x^5/5! - 24*x^6/6! + ...
		

Crossrefs

Programs

  • Magma
    [1,7,26,50] cat [(-1)^(n-1)*24*Factorial(n-5): n in [5..25]]; // Vincenzo Librandi, Jun 20 2016
  • Mathematica
    CoefficientList[Series[(1+t)^4 * Log[1+t], {t, 1, 20}], t]*Range[1, 20]! (* G. C. Greubel, Jun 19 2016 *)

Formula

a(n) = (-1)^(n-1)*24*(n - 5)! for n >= 5.
E.g.f.: A(x) = (1 + x)^4*log(1 + x).
Series reversion(A(x)) = exp(-1/4*T(-4*x)) - 1 = x - 7*x^2/2! + 11^2*x^3/3! - 15^3*x^4/4! + 19^4*x^5/5! - ... is the e.g.f. for a signed version of A274267, where T(x) = Sum_{n >= 1} n^(n-1)*x^n/n! is Euler's tree function - see A000169.
Sum_{n>=1} 1/a(n) = 2733/2275 + 1/(24*e). - Amiram Eldar, Feb 02 2023
Showing 1-4 of 4 results.