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.

A228928 G.f. A(x) satisfies: 1/A(x)^8 + 64*x*A(x)^8 = 1/A(x^2)^4 + 8*x*A(x^2)^4.

This page as a plain text file.
%I A228928 #6 May 26 2025 23:50:39
%S A228928 1,7,672,91147,14486409,2516759469,463051052653,88674496050245,
%T A228928 17490154693966234,3528922457876864195,724934544034900295558,
%U A228928 151110852750623222310189,31881833636363854856989129,6795336519252277650628254056,1461001691259055273207790036665
%N A228928 G.f. A(x) satisfies: 1/A(x)^8 + 64*x*A(x)^8 = 1/A(x^2)^4 + 8*x*A(x^2)^4.
%F A228928 G.f. A(x) satisfies:
%F A228928 (1) 1/A(x)^8 + 64*x*A(x)^8 = F(x)^8,
%F A228928 (2) 1/A(x^2)^4 + 8*x*A(x^2)^4 = F(x)^8,
%F A228928 (3) A(x) = ( (F(x)^8 - sqrt(F(x)^16 - 256*x)) / (128*x) )^(1/8),
%F A228928 (4) A(x^2) = ( (F(x)^8 - sqrt(F(x)^16 - 32*x)) / (16*x) )^(1/4),
%F A228928 where F(x) = (F(x^2)^8 + 16*x)^(1/16) is the g.f. of A228927.
%e A228928 G.f.: A(x) = 1 + 7*x + 672*x^2 + 91147*x^3 + 14486409*x^4 +...
%e A228928 such that A(x) satisfies the identity illustrated by:
%e A228928 1/A(x)^8 + 64*x*A(x)^8 = 1 + 8*x - 28*x^2 + 224*x^3 - 2198*x^4 + 23856*x^5 +...
%e A228928 1/A(x^2)^4 + 8*x*A(x^2)^4 = 1 + 8*x - 28*x^2 + 224*x^3 - 2198*x^4 + 23856*x^5 +...
%e A228928 Related expansions.
%e A228928 A(x)^4 = 1 + 28*x + 2982*x^2 + 422408*x^3 + 68709025*x^4 + 12111355116*x^5 +...
%e A228928 A(x)^8 = 1 + 56*x + 6748*x^2 + 1011808*x^3 + 169965222*x^4 + 30589656944*x^5 +...
%e A228928 1/A(x)^4 = 1 - 28*x - 2198*x^2 - 277368*x^3 - 42560861*x^4 - 7240234148*x^5 +...
%e A228928 1/A(x)^8 = 1 - 56*x - 3612*x^2 - 431648*x^3 - 64757910*x^4 - 10877750352*x^5 +...
%e A228928 The g.f. of A228927 satisfies F(x) = (F(x^2)^8 + 16*x)^(1/16) and begins:
%e A228928 F(x) = 1 + x - 7*x^2 + 70*x^3 - 798*x^4 + 9737*x^5 - 124124*x^6 + 1631041*x^7 +...
%e A228928 where F(x)^16 = F(x^2)^8 + 16*x:
%e A228928 F(x)^8 = 1 + 8*x - 28*x^2 + 224*x^3 - 2198*x^4 + 23856*x^5 - 277368*x^6 +...
%e A228928 F(x)^16 = 1 + 16*x + 8*x^2 - 28*x^4 + 224*x^6 - 2198*x^8 + 23856*x^10 +...
%o A228928 (PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=1/(1/subst(A, x, x^2)^4 + 8*x*subst(A, x, x^2)^4 - 64*x*A^8 +x*O(x^n))^(1/8)); polcoeff(A, n)}
%o A228928 for(n=0, 20, print1(a(n), ", "))
%Y A228928 Cf. A228927.
%Y A228928 Cf. variants: A187814, A228712.
%K A228928 nonn
%O A228928 0,2
%A A228928 _Paul D. Hanna_, Sep 08 2013