A341871
Coefficients of the series whose 48th power equals E_2(x)^2/E_4(x), where E_2(x) and E_4(x) are the Eisenstein series A006352 and A004009.
Original entry on oeis.org
1, -6, 558, -88884, 15433662, -2864048616, 552921962724, -109731286565040, 22220439670517814, -4569456313225317114, 951159953810624453208, -199945837161334089352548, 42373766861587365894611604
Offset: 0
-
E(2,x) := 1 - 24*add(k*x^k/(1-x^k), k = 1..20):
E(4,x) := 1 + 240*add(k^3*x^k/(1-x^k), k = 1..20):
with(gfun): series((E(2,x)^2/E(4,x))^(1/48), x, 20):
seriestolist(%);
A341875
Coefficients of the series whose 24th power equals E_2(x)*E_4(x)/E_6(x), where E_2(x), E_4(x) and E_6(x) are the Eisenstein series A006352, A004009 and A013973.
Original entry on oeis.org
1, 30, 5310, 2453220, 910100190, 409796742600, 181276113779460, 84362079365838960, 39636500385830239350, 18986938020443181757410, 9186944625290601368703000, 4491611148118819794144792660, 2212757749022582852433835771860, 1097546094982154634980848454416920
Offset: 0
Cf.
A006352 (E_2),
A004009 (E_4),
A008410 (E_8),
A013973,
A013974 (E_10).
A108091 (E_8)^(1/16),
A110150 ((E_10)^(1/4)),
A289392 ((E_2)^(1/4)),
A341871 -
A341874,
A377973,
A377974,
A377975,
A377976,
A377977.
-
E(2,x) := 1 - 24*add(k*x^k/(1-x^k), k = 1..20):
E(4,x) := 1 + 240*add(k^3*x^k/(1-x^k), k = 1..20):
E(6,x) := 1 - 504*add(k^5*x^k/(1-x^k), k = 1..20):
with(gfun): series((E(2,x)*E(4,x)/E(6,x))^(1/24), x, 20):
seriestolist(%);
A289318
Coefficients in expansion of E_4^(3/4).
Original entry on oeis.org
1, 180, -3780, 447840, -59046660, 8921092680, -1463828444640, 253953515257920, -45858209756343300, 8534765953624978260, -1626301691950399586280, 315807346469727624396960, -62284193156782292089690080, 12443904711281870749228431240
Offset: 0
-
nmax = 20; CoefficientList[Series[(1 + 240*Sum[DivisorSigma[3,k]*x^k, {k, 1, nmax}])^(3/4), {x, 0, nmax}], x] (* Vaclav Kotesovec, Jul 08 2017 *)
A289247
Coefficients in expansion of 1/E_4^(1/8).
Original entry on oeis.org
1, -30, 3780, -616440, 111056910, -21135698280, 4165203862440, -840914061328320, 172810940671692900, -35998781800053352710, 7579904611028433074280, -1609957152292592382408360, 344417407415742189796786680, -74127324674775434904036905640
Offset: 0
E_4^(k/8):
A001943 (k=-8),
A289566 (k=-4),
A295815 (k=-2), this sequence (k=-1),
A108091 (k=1),
A289307 (k=2),
A289308 (k=3),
A289292 (k=4),
A289309 (k=5),
A289318 (k=6),
A289319 (k=7),
A004009 (k=8).
-
nmax = 20; CoefficientList[Series[(1 + 240*Sum[DivisorSigma[3,k]*x^k, {k, 1, nmax}])^(-1/8), {x, 0, nmax}], x] (* Vaclav Kotesovec, Jul 09 2017 *)
A294974
Coefficients in expansion of (E_2^4/E_4)^(1/8).
Original entry on oeis.org
1, -42, 4032, -659904, 118064226, -22406634432, 4407587356032, -888750999070464, 182478248639753472, -37986867560948245674, 7994272624037726124672, -1697243410477799687716416, 362963150140702802158191360, -78095916585903527021840348352
Offset: 0
-
terms = 14;
E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}];
E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}];
(E2[x]^4/E4[x])^(1/8) + O[x]^terms // CoefficientList[#, x]& (* Jean-François Alcover, Feb 26 2018 *)
A377974
Expansion of the 1920th root of the series 2*E_4(x) - E_8(x), where E_4 and E_8 are the Eisenstein series of weight 4 and weight 8.
Original entry on oeis.org
1, 0, -30, -540, -867660, -31107300, -33668157900, -1795572812400, -1477793386682970, -103845834995498100, -69550699526934273180, -6017200267937951322660, -3426636160378174348594500, -349303370036461528632524580, -174458882971934188146144343320, -20314204536496741742949242177040
Offset: 0
-
with(numtheory):
E := proc (k) local n, t1; t1 := 1 - 2*k*add(sigma[k-1](n)*q^n, n = 1..30)/bernoulli(k); series(t1, q, 30) end:
seq(coeftayl((2*E(4) - E(8))^(1/1920), q = 0, n),n = 0..20);
-
terms = 20; E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}]; E8[x_] = 1 + 480*Sum[k^7*x^k/(1 - x^k), {k, 1, terms}]; CoefficientList[Series[(2*E4[x] - E8[x])^(1/1920), {x, 0, terms}], x] (* Vaclav Kotesovec, Aug 03 2025 *)
A377977
Expansion of the 288th root of the series 3*E_4(x) - 2*E_6(x), where E_4(x) and E_6(x) are the Eisenstein series of weight 4 and 6.
Original entry on oeis.org
1, 6, -5028, 5704188, -7284893010, 9926715853068, -14092613175928308, 20580782244716567592, -30684764269418402550900, 46478269075227117026711730, -71284154421570122590465786956, 110437754516732491586466670733772, -172528135408494997625486967978486588, 271418933884659782820559630827037837908
Offset: 0
-
with(numtheory):
E := proc (k) local n, t1; t1 := 1 - 2*k*add(sigma[k-1](n)*q^n, n = 1..30)/bernoulli(k); series(t1, q, 30) end:
seq(coeftayl((3*E(4) - 2*E(6))^(1/288), q = 0, n), n = 0..20);
-
terms = 20; E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}]; E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}]; CoefficientList[Series[(3*E4[x] - 2*E6[x])^(1/288), {x, 0, terms}], x] (* Vaclav Kotesovec, Aug 03 2025 *)
Original entry on oeis.org
-30, 3345, -512030, 88617345, -16360095774, 3146109187345, -622294742016030, 125653141164729345, -25774484801870336030, 5353054537005702294801, -1122995842254699148800030, 237552033786848383463977345, -50601782105721473281984512030
Offset: 1
A303007
Expansion of (1-240*x)^(1/8).
Original entry on oeis.org
1, -30, -3150, -472500, -81506250, -15160162500, -2956231687500, -595469525625000, -122815589660156250, -25791273828632812500, -5493541325498789062500, -1183608449221102734375000, -257434837705589844726562500, -56437637496994696728515625000
Offset: 0
(1-b*x)^(1/
A003557(b)):
A002420 (b=4),
A004984 (b=8),
A004990 (b=9), (-1)^n *
A108735 (b=12),
A301271 (b=16), (-1)^n *
A108733 (b=18),
A049393 (b=25),
A004996 (b=36), this sequence (b=240),
A303055 (b=504),
A305886 (b=1728).
-
CoefficientList[Series[Surd[1-240x,8],{x,0,20}],x] (* Harvey P. Dale, Aug 29 2024 *)
-
N=20; x='x+O('x^N); Vec((1-240*x)^(1/8))
A377976
Expansion of the 48th root of the series 2*E_2(x) - E_4(x), where E_2(x) and E_4(x) are the Eisenstein series of weight 2 and 4.
Original entry on oeis.org
1, -6, -894, -174420, -38431614, -9048710040, -2221653118116, -561444889080960, -144914324838755910, -38011797621225586602, -10098281618881696696392, -2710458654395655881518356, -733711171629600485187568404, -200033609249999737396399900920, -54867682197669353983111639906656
Offset: 0
-
with(numtheory):
E := proc (k) local n, t1; t1 := 1 - 2*k*add(sigma[k-1](n)*q^n, n = 1..30)/bernoulli(k); series(t1, q, 30) end:
seq(coeftayl((2*E(2) - E(4))^(1/48), q = 0, n),n = 0..20);
-
terms = 20; E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}]; E4[x_] = 1 + 240*Sum[k^3*x^k/(1 - x^k), {k, 1, terms}]; CoefficientList[Series[(2*E2[x] - E4[x])^(1/48), {x, 0, terms}], x] (* Vaclav Kotesovec, Aug 03 2025 *)
Comments