A101627 Numerator of partial sums of a certain series.
1, 39, 241, 34883, 14039, 1516871, 7601151, 875425657, 7887002813, 7095769757767, 14199583385459, 75087685321529, 75113436870869, 927229349730873529, 927436191807263569, 305182576081725442901, 23479178371879154033, 37713848011377144613, 37717984058802320713, 135759786815564675620247
Offset: 1
Examples
s(3)= 24*(1/(2*3*4)+ 1/(5*6*7) + 1/(8*9*10)) = 241/210, hence a(3)=241 and A101628(3)=210.
Links
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- Wolfdieter Lang, Rationals s(n) and more.
Programs
-
Mathematica
Numerator[Accumulate[Table[8/(9k^3-k),{k,20}]]]
-
PARI
a(n) = numerator(24*sum(k=1, n, 1/((3*k-1)*(3*k)*(3*k+1))));
Formula
a(n)=numerator(s(n)) with s(n)=24*sum(1/((3*k-1)*(3*k)*(3*k+1)), k=1..n).
Extensions
More terms from Michel Marcus, Mar 01 2022
Comments