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 A281371 #22 Jan 05 2023 11:05:13 %S A281371 0,0,1,36,492,3608,18828,74760,250352,717984,1866558,4365580,9635472, %T A281371 19639032,38559416,71222616,128258496,219619968,370366101,597550068, %U A281371 955638824,1471571136,2253173892,3335433368,4932972864,7064391840,10133162774,14128072488,19743952032,26864847352 %N A281371 Coefficients in q-expansion of (E_2*E_4 - E_6)^2/518400, where E_2, E_4, E_6 are the Eisenstein series shown in A006352, A004009, A013973, respectively. %C A281371 This is (up to a constant factor), the numerator of the expression phi defined in Cohn (2017) (see phi on page 114 of the Notices version). %H A281371 Seiichi Manyama, <a href="/A281371/b281371.txt">Table of n, a(n) for n = 0..1000</a> %H A281371 Henry Cohn, <a href="http://arxiv.org/abs/1611.01685">A conceptual breakthrough in sphere packing</a>, arXiv preprint arXiv:1611.01685 [math.MG], 2016; also Notices Amer. Math. Soc., 64:2 (2017), pp. 102-115. %p A281371 with(numtheory); M:=100; %p A281371 E := proc(k) local n, t1; global M; %p A281371 t1 := 1-(2*k/bernoulli(k))*add(sigma[k-1](n)*q^n, n=1..M+1); %p A281371 series(t1, q, M+1); end; %p A281371 e2:=E(2); e4:=E(4); e6:=E(6); %p A281371 t1:=series((e2*e4-e6)^2/518400,q,M+1); %p A281371 seriestolist(t1); %t A281371 terms = 30; %t A281371 E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}]; %t A281371 E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}]; %t A281371 E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}]; %t A281371 (E2[x]*E4[x] - E6[x])^2/518400 + O[x]^terms // CoefficientList[#, x]& (* _Jean-François Alcover_, Feb 27 2018 *) %Y A281371 Cf. A006352, A004009, A013973, A145094, A281372 (the square root). %K A281371 nonn %O A281371 0,4 %A A281371 _N. J. A. Sloane_, Feb 04 2017