A161527 Numerators of cumulative sums of rational sequence A038110(k)/A038111(k).
1, 2, 11, 27, 61, 809, 13945, 268027, 565447, 2358365, 73551683, 2734683311, 112599773191, 4860900544813, 9968041656757, 40762420985117, 83151858555707, 5085105491885327, 341472595155548909, 24295409051193284539, 1777124696397561611347
Offset: 1
Links
- Peter Kagey, Table of n, a(n) for n = 1..400
Programs
-
Mathematica
Numerator[Table[1 - Product[1 - (1/Prime[k]), {k,1,n}], {n,1,20}]]
-
PARI
r(n) = prod(k=1, n-1, (1 - 1/prime(k)))/prime(n); a(n) = numerator(sum(k=1, n, r(k))); \\ Michel Marcus, Jun 08 2019
Comments