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.

A211893 G.f.: exp( Sum_{n>=1} 3 * Jacobsthal(n)^n * x^n/n ), where Jacobsthal(n) = A001045(n).

This page as a plain text file.
%I A211893 #9 Nov 06 2013 23:22:08
%S A211893 1,3,6,36,561,98211,43176384,116622937722,1022189210900601,
%T A211893 41675008108242048327,6377839090284322052067558,
%U A211893 4114890941608928235401688095580,10460015732506081308723488849683574907,108482611110966450613465001912856742180485969
%N A211893 G.f.: exp( Sum_{n>=1} 3 * Jacobsthal(n)^n * x^n/n ), where Jacobsthal(n) = A001045(n).
%C A211893 Given g.f. A(x), note that A(x)^(1/3) is not an integer series.
%F A211893 G.f.: exp( Sum_{n>=1} (2^n - (-1)^n)^n / 3^(n-1) * x^n/n ).
%e A211893 G.f.: A(x) = 1 + 3*x + 6*x^2 + 36*x^3 + 561*x^4 + 98211*x^5 + 43176384*x^6 +...
%e A211893 such that
%e A211893 log(A(x))/3 = x + x^2/2 + 3^3*x^3/3 + 5^4*x^4/4 + 11^5*x^5/5 + 21^6*x^6/6 + 43^7*x^7/7 +...+ Jacobsthal(n)^n*x^n/n +...
%e A211893 Jacobsthal numbers begin:
%e A211893 A001045 = [1,1,3,5,11,21,43,85,171,341,683,1365,2731,5461,10923,...].
%o A211893 (PARI) {Jacobsthal(n)=polcoeff(x/(1-x-2*x^2+x*O(x^n)),n)}
%o A211893 {a(n)=polcoeff(exp(sum(k=1, n, 3*Jacobsthal(k)^k*x^k/k)+x*O(x^n)), n)}
%o A211893 for(n=0, 16, print1(a(n), ", "))
%Y A211893 Cf. A211892, A211894, A211895, A211896, A207971, A207972, A001045.
%Y A211893 Cf. A231292 (Jacobsthal(n)^n).
%K A211893 nonn
%O A211893 0,2
%A A211893 _Paul D. Hanna_, Apr 24 2012