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!)
A352703 G.f. A(x) satisfies: A(x)^5 = A(x^5) + 5*x. 4
1, 1, -2, 6, -21, 80, -320, 1326, -5637, 24434, -107542, 479196, -2157045, 9792702, -44780606, 206055346, -953305632, 4431463863, -20686696920, 96931500840, -455722378776, 2149086843549, -10162544469252, 48176923330632, -228913129263389, 1089973058779915 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Not the same as A106223 or A196345.
LINKS
EXAMPLE
G.f.: A(x) = 1 + x - 2*x^2 + 6*x^3 - 21*x^4 + 80*x^5 - 320*x^6 + 1326*x^7 - 5637*x^8 + 24434*x^9 - 107542*x^10 + 479196*x^11 + ...
such that A(x)^5 = A(x^5) + 5*x, as illustrated by:
A(x)^5 = 1 + 5*x + x^5 - 2*x^10 + 6*x^15 - 21*x^20 + 80*x^25 - 320*x^30 + 1326*x^35 - 5637*x^40 + 24434*x^45 - 107542*x^50 + ...
PROG
(PARI) {a(n) = my(A=1+x); for(i=0, n\5,
A = (subst(A, x, x^5) + 5*x + x*O(x^(5*n)))^(1/5));
polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A374554 A106223 A196345 * A352704 A257561 A150203
KEYWORD
sign
AUTHOR
Paul D. Hanna, Mar 29 2022
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 15 11:39 EDT 2024. Contains 375173 sequences. (Running on oeis4.)