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.

A251587 a(n) = 7^(n-5) * (n+1)^(n-7) * (1296*n^5 + 9720*n^4 + 30555*n^3 + 50665*n^2 + 44621*n + 16807).

This page as a plain text file.
%I A251587 #11 Sep 01 2025 19:59:51
%S A251587 1,1,9,202,7745,429192,31383169,2862173104,313456891041,
%T A251587 40120056928000,5880757402778489,971776774765633536,
%U A251587 178783183332534538849,36248462186643418851328,8031317081954231731640625,1930762515644331053063077888,500587184017640118192794723009,139240118930461640299714951839744
%N A251587 a(n) = 7^(n-5) * (n+1)^(n-7) * (1296*n^5 + 9720*n^4 + 30555*n^3 + 50665*n^2 + 44621*n + 16807).
%H A251587 G. C. Greubel, <a href="/A251587/b251587.txt">Table of n, a(n) for n = 0..300</a>
%F A251587 Let G(x) = 1 + x*G(x)^7 be the g.f. of A002296, then the e.g.f. A(x) of this sequence satisfies:
%F A251587 (1) A(x) = exp( 7*x*A(x) * G(x*A(x))^6 ) / G(x*A(x))^6.
%F A251587 (2) A(x) = F(x*A(x)) where F(x) = exp(7*x*G(x)^6)/G(x)^6 is the e.g.f. of A251577.
%F A251587 (3) a(n) = [x^n/n!] F(x)^(n+1)/(n+1) where F(x) is the e.g.f. of A251577.
%F A251587 E.g.f.: -LambertW(-7*x) * (7 + LambertW(-7*x))^6 / (x*7^7). - _Vaclav Kotesovec_, Dec 07 2014
%e A251587 E.g.f.: A(x) = 1 + x + 9*x^2/2! + 202*x^3/3! + 7745*x^4/4! + 429192*x^5/5! +...
%e A251587 such that A(x) = exp( 7*x*A(x) * G(x*A(x))^6 ) / G(x*A(x))^6
%e A251587 where G(x) = 1 + x*G(x)^5 is the g.f. of A002296:
%e A251587 G(x) = 1 + x + 7*x^2 + 70*x^3 + 819*x^4 + 10472*x^5 + 141778*x^6 +...
%e A251587 RELATED SERIES.
%e A251587 Note that A(x) = F(x*A(x)) where F(x) = exp(7*x*G(x)^6)/G(x)^6,
%e A251587 F(x) = 1 + x + 7*x^2/2! + 133*x^3/3! + 4501*x^4/4! + 224497*x^5/5! +...
%e A251587 is the e.g.f. of A251577.
%t A251587 Table[7^(n - 5)*(n + 1)^(n - 7)*(1296*n^5 + 9720*n^4 + 30555*n^3 + 50665*n^2 + 44621*n + 16807), {n, 0, 20}] (* _G. C. Greubel_, Nov 10 2017 *)
%o A251587 (PARI) {a(n) = 7^(n-5) * (n+1)^(n-7) * (1296*n^5 + 9720*n^4 + 30555*n^3 + 50665*n^2 + 44621*n + 16807)}
%o A251587 for(n=0,20,print1(a(n),", "))
%o A251587 (PARI) {a(n) = local(G=1,A=1); for(i=1,n, G=1+x*G^7 +x*O(x^n));
%o A251587 for(i=1,n, A = exp(7*x*A * subst(G^6,x,x*A) ) / subst(G^6,x,x*A) ); n!*polcoeff(A, n)}
%o A251587 for(n=0, 20, print1(a(n), ", "))
%Y A251587 Cf. A251577, A002296.
%Y A251587 Cf. Variants: A251583, A251584, A251585, A251586, A251588, A251589, A251590.
%K A251587 nonn,easy,changed
%O A251587 0,3
%A A251587 _Paul D. Hanna_, Dec 06 2014