A308614 Numerators of the even shifted moments of the ternary Cantor measure.
1, 1, 7, 205, 10241, 26601785, 144273569311, 8432005793267, 85813777224887042933, 41391682933691854767291415, 279988393358814530594186727509023, 4597481350195941947735138659876438945979, 137236498421201646022141003769649699705393990756253
Offset: 0
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..48
- Steven N. Harding, Alexander W. N. Riasanovsky, Moments of the weighted Cantor measures, arXiv:1908.05358 [math.FA], 2019.
Programs
-
Mathematica
f[0] = 1; f[n_] := f[n] = Sum[Binomial[n, j]*2^(n - j - 1)*f[j], {j, 0, n - 1}]/(3^n - 1); a[n_] := Sum[Binomial[n, j]*f[j]*(-1/2)^(n - j), {j, 0, n}]; Table[Numerator[a[i]], {i, 0, 24, 2}] (* Amiram Eldar, Aug 03 2019 *)
-
Sage
moms = [1] for k in [1..15]: s = 0 for j in [0..k-1]: s += binomial(k, j)*2^(k-j)*moms[j]/2 s /= (3^k-1) moms.append(s) var('x') shmoms = [] for k in [0..15]: p = (x-1/2)^k p = p.expand() s = 0 for m in [0..k]: s += moms[m]*p.coefficient(x, m) shmoms.append(s) [p.numerator() for p in shmoms if p]
Extensions
More terms from Amiram Eldar, Aug 03 2019
Comments