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!)
A370144 Expansion of g.f. A(x) satisfying Sum_{n>=0} Product_{k=1..n} (x^k + 4*A(x)) = 1 + 5*Sum_{n>=1} x^(n*(n+1)/2). 5
1, -5, 25, -125, 620, -3055, 14935, -72320, 346120, -1632435, 7555615, -34103940, 148616480, -614229500, 2321723005, -7293541865, 11847720800, 80050256480, -1182000043580, 10263664188460, -75379977023875, 508865668922995, -3262422374486260, 20187692749822600, -121673379897635840 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) = Sum_{n>=1} a(n)*x^n satisfies the following formulas.
Let Q(x) = 1 + 5*Sum_{n>=1} x^(n*(n+1)/2), then
(1) Q(x) = Sum_{n>=0} Product_{k=1..n} (x^k + 4*A(x)).
(2) Q(x) = Sum_{n>=0} x^(n*(n+1)/2) / Product_{k=0..n} (1 - x^k * 4*A(x)).
(3) Q(x) = 1/(1 - F(1)), where F(n) = (x^n + 4*A(x))/(1 + x^n + 4*A(x) - F(n+1)), a continued fraction.
EXAMPLE
G.f.: A(x) = x - 5*x^2 + 25*x^3 - 125*x^4 + 620*x^5 - 3055*x^6 + 14935*x^7 - 72320*x^8 + 346120*x^9 - 1632435*x^10 + 7555615*x^11 + ...
Let Q(x) = 1 + 5*Sum_{n>=1} x^(n*(n+1)/2)
then A = A(x) satisfies
(1) Q(x) = 1 + (x + 4*A) + (x + 4*A)*(x^2 + 4*A) + (x + 4*A)*(x^2 + 4*A)*(x^3 + 4*A) + (x + 4*A)*(x^2 + 4*A)*(x^3 + 4*A)*(x^4 + 4*A) + (x + 4*A)*(x^2 + 4*A)*(x^3 + 4*A)*(x^4 + 4*A)*(x^5 + 4*A) + ...
also
(2) Q(x) = 1/(1 - 4*A) + x/((1 - 4*A)*(1 - x*4*A)) + x^3/((1 - 4*A)*(1 - x*4*A)*(1 - x^2*4*A)) + x^6/((1 - 4*A)*(1 - x*4*A)*(1 - x^2*4*A)*(1 - x^3*4*A)) + x^10/((1 - 4*A)*(1 - x*4*A)*(1 - x^2*4*A)*(1 - x^3*4*A)*(1 - x^4*4*A)) + ...
Further, A = A(x) satisfies the continued fraction given by
(3) Q(x) = 1/(1 - (x + 4*A)/(1 + x + 4*A - (x^2 + 4*A)/(1 + x^2 + 4*A - (x^3 + 4*A)/(1 + x^3 + 4*A - (x^4 + 4*A)/(1 + x^4 + 4*A - (x^5 + 4*A)/(1 + x^5 + 4*A - (x^6 + 4*A)/(1 + x^6 + 4*A - (x^7 + 4*A)/(1 - ...)))))))).
where
Q(x) = 1 + 5*x + 5*x^3 + 5*x^6 + 5*x^10 + 5*x^15 + 5*x^21 + ... + 5*x^(n*(n+1)/2) + ...
PROG
(PARI) {a(n, y=4) = my(A=[0, 1]); for(i=1, n, A = concat(A, 0);
A[#A] = polcoeff( (sum(m=1, #A, prod(k=1, m, x^k + y*Ser(A) ) ) - (y+1)*sum(m=1, sqrtint(2*#A+1), x^(m*(m+1)/2) ) )/(-y), #A-1) ); H=A; A[n+1]}
for(n=1, 40, print1(a(n), ", "))
CROSSREFS
Sequence in context: A269431 A269686 A269490 * A269772 A269652 A163844
KEYWORD
sign
AUTHOR
Paul D. Hanna, Feb 14 2024
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 August 19 11:04 EDT 2024. Contains 375284 sequences. (Running on oeis4.)