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.
%I A352235 #10 Nov 16 2023 12:53:01 %S A352235 1,1,3,24,309,5262,108894,2618718,71246145,2154788970,71563126710, %T A352235 2586270267600,100995812044266,4237522832234832,190126298040192912, %U A352235 9085093650185205498,460711407231295513689,24715373661154672634058,1398648334415007990887454 %N A352235 G.f. A(x) satisfies: A(x) = 1 + x*A(x) / (A(x) - 3*x*A'(x)). %H A352235 Vaclav Kotesovec, <a href="/A352235/b352235.txt">Table of n, a(n) for n = 0..378</a> %F A352235 G.f. A(x) satisfies: %F A352235 (1) [x^n] A(x)^(3*n+2) = [x^(n-1)] (3*n+2) * A(x)^(3*n+2) for n >= 1. %F A352235 (2) A(x) = 1 + x*A(x)/(A(x) - 3*x*A'(x)). %F A352235 (3) A'(x) = A(x) * (1 + x/(1 - A(x))) / (3*x). %F A352235 (4) A(x) = exp( Integral (1 + x/(1 - A(x))) / (3*x) dx ). %F A352235 a(n) ~ c * 3^n * n! * n^(2/3), where c = 0.09232038797888963484135336... - _Vaclav Kotesovec_, Nov 16 2023 %e A352235 G.f.: A(x) = 1 + x + 3*x^2 + 24*x^3 + 309*x^4 + 5262*x^5 + 108894*x^6 + 2618718*x^7 + 71246145*x^8 + ... %e A352235 such that A(x) = 1 + x*A(x)/(A(x) - 3*x*A'(x)). %e A352235 Related table. %e A352235 The table of coefficients of x^k in A(x)^(3*n+2) begins: %e A352235 n=0: [1, 2, 7, 54, 675, 11286, 230742, ...]; %e A352235 n=1: [1, 5, 25, 190, 2210, 34981, 688635, ...]; %e A352235 n=2: [1, 8, 52, 416, 4642, 69872, 1322848, ...]; %e A352235 n=3: [1, 11, 88, 759, 8349, 120549, 2195886, ...]; %e A352235 n=4: [1, 14, 133, 1246, 13790, 193060, 3391017, ...]; %e A352235 n=5: [1, 17, 187, 1904, 21505, 295154, 5017618, ...]; %e A352235 n=6: [1, 20, 250, 2760, 32115, 436524, 7217250, ...]; ... %e A352235 in which the following pattern holds: %e A352235 [x^n] A(x)^(3*n+2) = [x^(n-1)] (3*n+2) * A(x)^(3*n+2), n >= 1, %e A352235 as illustrated by %e A352235 [x^1] A(x)^2 = 2 = [x^0] 2*A(x)^2 = 2*1; %e A352235 [x^2] A(x)^5 = 25 = [x^1] 5*A(x)^5 = 5*5; %e A352235 [x^3] A(x)^8 = 416 = [x^2] 8*A(x)^8 = 8*52; %e A352235 [x^4] A(x)^11 = 8349 = [x^3] 11*A(x)^11 = 11*759; %e A352235 [x^5] A(x)^14 = 193060 = [x^4] 14*A(x)^14 = 14*13790; %e A352235 [x^6] A(x)^17 = 5017618 = [x^5] 17*A(x)^17 = 17*295154; ... %o A352235 (PARI) /* Using A(x) = 1 + x*A(x)/(A(x) - 3*x*A'(x)) */ %o A352235 {a(n) = my(A=1); for(i=1,n, A = 1 + x*A/(A - 3*x*A' + x*O(x^n)) ); %o A352235 polcoeff(A,n)} %o A352235 for(n=0,20, print1(a(n),", ")) %o A352235 (PARI) /* Using [x^n] A(x)^(3*n+2) = [x^(n-1)] (3*n+2)*A(x)^(3*n+2) */ %o A352235 {a(n) = my(A=[1]); for(i=1,n, A=concat(A,0); %o A352235 A[#A] = polcoeff((x*Ser(A)^(3*(#A-2)+2) - Ser(A)^(3*(#A-2)+2)/(3*(#A-2)+2)),#A-1));A[n+1]} %o A352235 for(n=0,20, print1(a(n),", ")) %Y A352235 Cf. A088715, A286797, A317352, A352236, A352237, A352238. %K A352235 nonn %O A352235 0,3 %A A352235 _Paul D. Hanna_, Mar 08 2022