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 A211896 #14 Oct 18 2020 05:02:43 %S A211896 1,3,6,90,723,10689,130428,1862580,25594611,368313993,5289203262, %T A211896 77279744418,1134460916361,16798605635235,249994099311288, %U A211896 3740771822960664,56208829313956998,847934859174601650,12834366187138678836,194855374723972622988,2966358133685609559042 %N A211896 G.f.: exp( Sum_{n>=1} 3 * Jacobsthal(n)^4 * x^n/n ), where Jacobsthal(n) = A001045(n). %C A211896 Given g.f. A(x), note that A(x)^(1/3) is not an integer series. %F A211896 G.f.: ( (1+2*x)^4*(1+8*x)^4 / ((1-x)*(1-4*x)^6*(1-16*x)) )^(1/27). %F A211896 G.f.: exp( Sum_{n>=1} (2^n - (-1)^n)^4 / 27 * x^n/n ). %F A211896 a(n) ~ 3^(5/27) * 2^(4*n) / (5^(1/27) * Gamma(1/27) * n^(26/27)). - _Vaclav Kotesovec_, Oct 18 2020 %e A211896 G.f.: A(x) = 1 + 3*x + 6*x^2 + 90*x^3 + 723*x^4 + 10689*x^5 + 130428*x^6 +... %e A211896 such that %e A211896 log(A(x))/3 = x + x^2/2 + 3^4*x^3/3 + 5^4*x^4/4 + 11^4*x^5/5 + 21^4*x^6/6 + 43^4*x^7/7 +...+ Jacobsthal(n)^4*x^n/n +... %e A211896 Jacobsthal numbers begin: %e A211896 A001045 = [1,1,3,5,11,21,43,85,171,341,683,1365,2731,5461,10923,...]. %o A211896 (PARI) {Jacobsthal(n)=polcoeff(x/(1-x-2*x^2+x*O(x^n)),n)} %o A211896 {a(n)=polcoeff(exp(sum(k=1, n, 3*Jacobsthal(k)^4*x^k/k)+x*O(x^n)), n)} %o A211896 for(n=0, 30, print1(a(n), ", ")) %o A211896 (PARI) {a(n)=polcoeff(((1+2*x)^4*(1+8*x)^4/((1-x)*(1-4*x)^6*(1-16*x))+x*O(x^n))^(1/27),n)} %Y A211896 Cf. A211893, A211894, A211895, A207969, A001045 (Jacobsthal). %K A211896 nonn %O A211896 0,2 %A A211896 _Paul D. Hanna_, Apr 25 2012