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!)
A251698 a(n) = (6*n+1) * (7*n+1)^(n-2) * 8^n. 9
1, 7, 832, 214016, 86118400, 47393538048, 33160072265728, 28180480000000000, 28194546272924860416, 32466269569728810844160, 42295727044150128912891904, 61505801717703291002224115712, 98762474157744880353280000000000, 173565347832317233669371533581090816, 331360760866451564310212841997955235840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Let G(x) = 1 + x*G(x)^8 be the g.f. of A007556, then the e.g.f. A(x) of this sequence satisfies:
(1) A(x) = exp( 8*x*A(x)^7 * G(x*A(x)^7)^7 ) / G(x*A(x)^7).
(2) A(x) = F(x*A(x)^7) where F(x) = exp(8*x*G(x)^7)/G(x) is the e.g.f. of A251668.
(3) A(x) = ( Series_Reversion( x*G(x)^7 / exp(56*x*G(x)^7) )/x )^(1/7).
E.g.f.: (-LambertW(-56*x)/(56*x))^(1/7) * (1 + LambertW(-56*x)/56). - Vaclav Kotesovec, Dec 07 2014
EXAMPLE
E.g.f.: A(x) = 1 + 7*x + 832*x^2/2! + 214016*x^3/3! + 86118400*x^4/4! + 47393538048*x^5/5! +...
such that A(x) = exp( 8*x*A(x)^7 * G(x*A(x)^7)^7 ) / G(x*A(x)^7),
where G(x) = 1 + x*G(x)^8 is the g.f. A007556:
G(x) = 1 + x + 8*x^2 + 92*x^3 + 1240*x^4 + 18278*x^5 + 285384*x^6 +...
Also, e.g.f. A(x) satisfies A(x) = F(x*A(x)^7) where
F(x) = 1 + 7*x + 146*x^2/2! + 5570*x^3/3! + 316376*x^4/4! + 24070168*x^5/5! +...
F(x) = exp( 8*x*G(x)^7 ) / G(x) is the e.g.f. of A251668.
MATHEMATICA
Table[(6*n + 1)*(7*n + 1)^(n - 2)*8^n, {n, 0, 50}] (* G. C. Greubel, Nov 14 2017 *)
PROG
(PARI) {a(n) = (6*n+1) * (7*n+1)^(n-2) * 8^n}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=local(G=1, A=1); for(i=0, n, G = 1 + x*G^8 +x*O(x^n));
A = ( serreverse( x*G^7 / exp(56*x*G^7) )/x )^(1/7); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(Magma) [(6*n + 1)*(7*n + 1)^(n - 2)*8^n: n in [0..50]]; // G. C. Greubel, Nov 14 2017
CROSSREFS
Sequence in context: A278438 A279120 A047788 * A203694 A269896 A087350
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 07 2014
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 11:16 EDT 2024. Contains 371936 sequences. (Running on oeis4.)