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!)
A278746 E.g.f. A(x) is defined by: A(x) = Integral B(x)*C(x)^2 - B(x)^2*C(x) dx, where B(x) and C(x) are described by A278747 and A278748, respectively. 5
2, 0, 6, -24, -1206, 8280, -52858, 938952, 6413418, -322109160, 4068033894, -98801788536, 1090129290506, 34232660705880, -1166338051942842, 34835919349322568, -1017978660373211478, 3062745246204921240, 652008392567134637606, -31153686390303760362744, 1444941725264797489895754, -36336350568529387378761000, -147853882235572672805585658, 47707556073396637481524345032 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Given e.g.f. A(x), functions A = A(x), B = B(x), and C = C(x) satisfy:
(1) A^2 + B^2 + C^2 = 5,
(2) A^3 + B^3 + C^3 = 9.
(3) A^4 + B^4 + C^4 = (A'^2 + B'^2 + C'^2 + 81)/5.
In vector form, functions A, B, and C may be defined by
(4) [A,B,C] = [0,1,2] + Integral [A,B,C] X [A^2,B^2,C^2] dx.
Specifically,
(4.a) A = Integral B*C^2 - B^2*C dx,
(4.b) B = 1 + Integral C*A^2 - C^2*A dx,
(4.c) C = 2 + Integral A*B^2 - A^2*B dx.
EXAMPLE
E.g.f.: A(x) = 2*x + 6*x^3/3! - 24*x^4/4! - 1206*x^5/5! + 8280*x^6/6! - 52858*x^7/7! + 938952*x^8/8! + 6413418*x^9/9! - 322109160*x^10/10! + 4068033894*x^11/11! - 98801788536*x^12/12! + 1090129290506*x^13/13! + 34232660705880*x^14/14! - 1166338051942842*x^15/15! +...
such that A(x) = Integral B(x)*C(x)^2 - B(x)^2*C(x) dx, and B(x) and C(x) begin as follows.
B(x) = 1 - 8*x^2/2! + 16*x^3/3! - 72*x^4/4! + 640*x^5/5! + 6104*x^6/6! - 111888*x^7/7! + 1030936*x^8/8! - 20710880*x^9/9! + 100278648*x^10/10! + 4259777104*x^11/11! - 94939798408*x^12/12! + 2751909451200*x^13/13! - 58236639534824*x^14/14! - 39216365862992*x^15/15! +...
C(x) = 2 + 2*x^2/2! - 8*x^3/3! - 90*x^4/4! + 520*x^5/5! - 566*x^6/6! + 50904*x^7/7! + 396710*x^8/8! - 18390200*x^9/9! + 131511978*x^10/10! - 3005766632*x^11/11! + 33380803270*x^12/12! + 1757150970120*x^13/13! - 44857682845174*x^14/14! + 950900072932696*x^15/15! +...
These series satisfy:
(1) A(x)^2 + B(x)^2 + C(x)^2 = 5,
(2) A(x)^3 + B(x)^3 + C(x)^3 = 9.
PROG
(PARI) {a(n) = my(A=x, B=1, C=2); for(i=1, n,
A = intformal(B*C^2 - B^2*C +x*O(x^n));
B = 1 + intformal(C*A^2 - C^2*A);
C = 2 + intformal(A*B^2 - A^2*B); ); n!*polcoeff(A, n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A247443 A362685 A171734 * A280217 A079203 A151751
KEYWORD
sign
AUTHOR
Paul D. Hanna, Dec 19 2016
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)