A135568 a(n) = floor( Product_{i=1..n} prime(i)/i ).
1, 2, 3, 5, 8, 19, 41, 101, 240, 614, 1782, 5024, 15492, 48859, 150069, 470216, 1557591, 5405758, 18319515, 64600395, 229331402, 797199637, 2862671427, 10330509932, 38308974332, 148638820408
Offset: 0
Examples
a(5) = floor(2*3*5*7*11/5!) = floor(2310/120) = 19.
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
Programs
-
Maple
a:=proc(n) options operator, arrow: floor(mul(ithprime(i)/i,i=1..n)) end proc: seq(a(n),n=1..25); # Emeric Deutsch, Mar 14 2008
-
Mathematica
Table[Floor[Product[Prime[i]/i, {i, n}]], {n, 0, 25}] (* G. C. Greubel, Oct 19 2016 *)
Extensions
Corrected and extended by Emeric Deutsch, Mar 14 2008
Comments