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 A277040 #6 Sep 25 2016 15:56:29
%S A277040 1,2,3,8,25,66,357,1968,8073,135260,1271941,7376172,113614228,
%T A277040 1258281038,8941092630
%N A277040 Limit of the coefficient of x^(3^m + n) in B(x)^(n+1) as m grows, where B(x) = Sum_{k>=0} x^(3^k).
%C A277040 The g.f. of A277041(n) = a(n)/(n+1) appears to have an interesting functional interpretation.
%F A277040 a(n) = (n+1)*A277041(n).
%o A277040 (PARI) { a(n) = local(m=n + ceil(log(n+3)/log(3)), B=sum(k=0, m, x^(3^k))); polcoeff((B+O(x^(3^m+n+1)))^(n+1), 3^m+n) }
%o A277040 for(n=0,15,print1(a(n),", "))
%Y A277040 Cf. A144690, A277041, A277042, A277043.
%K A277040 nonn,more
%O A277040 0,2
%A A277040 _Paul D. Hanna_, Sep 25 2016