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 A000305 M3543 N1435 #30 Aug 21 2016 01:57:52 %S A000305 1,4,18,89,466,2537,14209,81316,473338,2793454,16674417,100487896, %T A000305 610549829,3735850007,23000055178,142370597601,885521350882, %U A000305 5531501612071,34686798239678,218273864005214,1377897874711437 %N A000305 Number of certain rooted planar maps. %D A000305 N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence). %D A000305 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A000305 Vincenzo Librandi, <a href="/A000305/b000305.txt">Table of n, a(n) for n = 1..200</a> %H A000305 W. G. Brown, <a href="http://dx.doi.org/10.4153/CJM-1963-056-7">Enumeration of non-separable planar maps</a>, Canad. J. Math., 15 (1963), 526-545. %H A000305 W. G. Brown, <a href="/A000087/a000087.pdf">Enumeration of non-separable planar maps</a> [Annotated scanned copy] %p A000305 with(linalg): T := proc(n,k) if k<=n then k*sum((2*j-k+1)*(j-1)!*(3*n-k-j)!/(j-k+1)!/(j-k)!/(2*k-j-1)!/(n-j)!,j=k..min(n,2*k-1))/(2*n-k+1)! else 0 fi end:A := matrix(30,30,T): seq(sum(A[i,j],j=1..i),i=1..30); %p A000305 R := RootOf(x-t*(t-1)^2, t); ogf := series((R+1)/((1-R-R^2)*(R-1)^2), x=0, 20); # _Mark van Hoeij_, Nov 08 2011 %t A000305 t[n_, k_] := If[k <= n, k*Sum[(2*j-k+1)*(j-1)!*(3*n-k-j)!/(j-k+1)!/(j-k)!/ (2*k-j-1)!/(n-j)!, {j, k, Min[n, 2*k-1]}]/(2*n-k+1)!, 0]; a[n_] := Sum[ t[n, k], {k, 1, n}]; Array[a, 21] (* _Jean-François Alcover_, Feb 07 2016 after Herman Jamke in A046652 *) %Y A000305 Row sums of A046652. %K A000305 nonn %O A000305 1,2 %A A000305 _N. J. A. Sloane_ %E A000305 More terms from _Emeric Deutsch_, Mar 03 2004