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 A360347 #10 Feb 06 2023 05:04:16 %S A360347 1,1,7,105,2366,68776,2390230,95166058,4228436480,206090296497, %T A360347 10887958126763,618187895371965,37479711430699245,2414492049517400164, %U A360347 164626564026042206780,11841796830661101527618,896184803460067359995232,71189783172592806474895908 %N A360347 G.f. A(x) satisfies: [x^n] A(x)^(n+1) = [x^n] (1 + x*A(x)^(2*n+3))^(n+1) for n >= 0. %C A360347 Sequences with g.f. A(x,k) such that [x^n] A(x,k)^(n+1) = [x^n] (1 + x*A(x,k)^(2*n+k))^(n+1) have a rate of growth: a(n) ~ c(k) * d^n * n! * n^alpha(k), where d = 3.93464558322824528799... (independent on k) and alpha(k) = 1.1169011279372... + k*0.518500901361... - _Vaclav Kotesovec_, Feb 06 2023 %H A360347 Paul D. Hanna, <a href="/A360347/b360347.txt">Table of n, a(n) for n = 0..300</a> %F A360347 G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies: %F A360347 (1) [x^n] A(x)^(n+1) = [x^n] (1 + x*A(x)^(2*n+3))^(n+1) for n>=0. %F A360347 (2) A(x) = Sum_{n>=0} b(n) * x^n/A(x)^n, where b(n) = [x^n] (1 + x*A(x)^(2*n+3))^(n+1) / (n+1). %F A360347 a(n) ~ c * d^n * n! * n^alpha, where d = 3.93464558322824528799..., alpha = 2.672403832022..., c = 0.0085435225111... - _Vaclav Kotesovec_, Feb 06 2023 %e A360347 G.f.: A(x) = 1 + x + 7*x^2 + 105*x^3 + 2366*x^4 + 68776*x^5 + 2390230*x^6 + 95166058*x^7 + 4228436480*x^8 + 206090296497*x^9 + ... %e A360347 RELATED SERIES. %e A360347 G.f. A(x) = B(x/A(x)) where B(x) = B(x*A(x)) begins: %e A360347 B(x) = 1 + x + 8*x^2 + 127*x^3 + 2927*x^4 + 85892*x^5 + 2998264*x^6 + 119665415*x^7 + 5325877575*x^8 + ... + b(n)*x^n + ... %e A360347 such that b(n) = [x^n] (1 + x*A(x)^(2*n+3))^(n+1) / (n+1), %e A360347 as well as b(n) = [x^n] A(x)^(n+1) / (n+1), %e A360347 so that b(n) begin: %e A360347 [1/1, 2/2, 24/3, 508/4, 14635/5, 515352/6, 20987848/7, 957323320/8, ...]. %e A360347 ILLUSTRATION OF DEFINITION. %e A360347 The table of coefficients of x^k in A(x)^(n+1) begins: %e A360347 n=0: [1, 1, 7, 105, 2366, 68776, 2390230, 95166058, ...]; %e A360347 n=1: [1, 2, 15, 224, 4991, 143754, 4962161, 196572300, ...]; %e A360347 n=2: [1, 3, 24, 358, 7896, 225396, 7727644, 304572936, ...]; %e A360347 n=3: [1, 4, 34, 508, 11103, 314192, 10699244, 419541832, ...]; %e A360347 n=4: [1, 5, 45, 675, 14635, 410661, 13890275, 541873525, ...]; %e A360347 n=5: [1, 6, 57, 860, 18516, 515352, 17314836, 671984280, ...]; %e A360347 n=6: [1, 7, 70, 1064, 22771, 628845, 20987848, 810313190, ...]; %e A360347 n=7: [1, 8, 84, 1288, 27426, 751752, 24925092, 957323320, ...]; ... %e A360347 Compare to the table of coefficients in (1 + x*A(x)^(2*n+3))^(n+1): %e A360347 n=0: [1, 1, 3, 24, 358, 7896, 225396, 7727644, ...]; %e A360347 n=1: [1, 2, 11, 100, 1465, 31070, 859367, 28808972, ...]; %e A360347 n=2: [1, 3, 24, 253, 3780, 77994, 2089024, 68277867, ...]; %e A360347 n=3: [1, 4, 42, 508, 7915, 161316, 4196916, 133476480, ...]; %e A360347 n=4: [1, 5, 65, 890, 14635, 298981, 7602705, 235213110, ...]; %e A360347 n=5: [1, 6, 93, 1424, 24858, 515352, 12914214, 389369448, ...]; %e A360347 n=6: [1, 7, 126, 2135, 39655, 842331, 20987848, 619044602, ...]; %e A360347 n=7: [1, 8, 164, 3048, 60250, 1320480, 32998388, 957323320, ...]; ... %e A360347 to see that the main diagonals of the tables are the same. %o A360347 (PARI) {a(n) = my(A=[1]); for(m=1, n, A=concat(A, 0); A[m+1] = (Vec((1+x*Ser(A)^(2*m+3))^(m+1))[m+1] - Vec(Ser(A)^(m+1))[m+1])/(m+1) ); A[n+1]} %o A360347 for(n=0, 20, print1(a(n), ", ")) %Y A360347 Cf. A360342, A360343, A360344, A360345, A360346. %Y A360347 Cf. A302704, A360235, A360237. %K A360347 nonn %O A360347 0,3 %A A360347 _Paul D. Hanna_, Feb 05 2023