login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111530 Row 3 of table A111528. 14
1, 1, 5, 33, 261, 2361, 23805, 263313, 3161781, 40907241, 567074925, 8385483393, 131787520101, 2194406578521, 38605941817245, 715814473193073, 13956039627763221, 285509132504621001, 6116719419966460365 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Paul Barry, A note on number triangles that are almost their own production matrix, arXiv:1804.06801 [math.CO], 2018.
A. N. Stokes, Continued fraction solutions of the Riccati equation, Bull. Austral. Math. Soc. Vol. 25 (1982), 207-214.
FORMULA
G.f.: (1/3)*log(Sum_{n>=0} (n+2)!/2!*x^n) = Sum_{n>=1} a(n)*x^n/n.
G.f.: A(x) = 1/(1 + 3*x - 4*x/(1 + 4*x - 5*x/(1 + 5*x - ... (continued fraction).
a(n) = Sum_{k=0..n} 3^(n-k)*A089949(n,k). - Philippe Deléham, Oct 16 2006
G.f.: G(0)/2, where G(k) = 1 + 1/(1 - x*(k+1)/(x*(k-1/2) + 1/G(k+1))); (continued fraction). - Sergei N. Gladkovskii, Jun 06 2013
G.f.: W(0), where W(k) = 1 - x*(k+1)/( x*(k+1) - 1/(1 - x*(k+1+R)/( x*(k+1+R) - 1/W(k+1) ))); R=3 is Row R of table A111528 (continued fraction). - Sergei N. Gladkovskii, Aug 26 2013
a(n) ~ n! * n^3/6 * (1 - 4/n^2 - 15/n^3 - 99/n^4 - 882/n^5 - 9531/n^6 - 119493/n^7 - 1693008/n^8 - 26638245/n^9 - 459682047/n^10). - Vaclav Kotesovec, Jul 27 2015
From Peter Bala, May 24 2017: (Start)
O.g.f. A(x) = ( Sum_{n >= 0} (n+3)!/3!*x^n ) / ( Sum_{n >= 0} (n+2)!/2!*x^n ).
1/(1 - 3*x*A(x)) = Sum_{n >= 0} (n+2)!/2!*x^n. Cf. A001710.
A(x)/(1 - 3*x*A(x)) = Sum_{n >= 0} (n+3)!/3!*x^n. Cf. A001715.
A(x) satisfies the Riccati equation x^2*A'(x) + 3*x*A^2(x) - (1 + 2*x)*A(x) + 1 = 0.
G.f. as an S-fraction: A(x) = 1/(1 - x/(1 - 4*x/(1 - 2*x/(1 - 5*x/(1 - 3*x/(1 - 6*x/(1 - ... - n*x/(1 - (n+3)*x/(1 - ... ))))))))), by Stokes 1982.
A(x) = 1/(1 + 3*x - 4*x/(1 - x/(1 - 5*x/(1 - 2*x/(1 - 6*x/(1 - 3*x/(1 - ... - (n + 3)*x/(1 - n*x/(1 - ... ))))))))). (End)
EXAMPLE
(1/3)*(log(1 + 3*x + 12*x^2 + 60*x^3 + ... + (n+2)!/2!)*x^n + ...)
= x + 5/2*x^2 + 33/3*x^3 + 261/4*x^4 + 2361/5*x^5 + ...
MATHEMATICA
T[n_, k_] := T[n, k] = Which[n<0 || k<0, 0, k==0 || k==1, 1, n==0, k!, True, (T[n-1, k+1]-T[n-1, k])/n - Sum[T[n, j]*T[n-1, k-j], {j, 1, k-1}]];
a[n_] := T[3, n];
Table[a[n], {n, 0, 18}] (* Jean-François Alcover, Aug 09 2018 *)
PROG
(PARI) {a(n)=if(n<0, 0, if(n==0, 1, (n/3)*polcoeff(log(sum(m=0, n, (m+2)!/2!*x^m) + x*O(x^n)), n)))} \\ fixed by Vaclav Kotesovec, Jul 27 2015
CROSSREFS
Cf: A111528 (table), A003319 (row 1), A111529 (row 2), A111531 (row 4), A111532 (row 5), A111533 (row 6), A111534 (diagonal).
Sequence in context: A199552 A361411 A061253 * A367946 A087633 A135075
KEYWORD
nonn,easy
AUTHOR
Paul D. Hanna, Aug 06 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 08:56 EDT 2024. Contains 371934 sequences. (Running on oeis4.)