A383074 a(n) = floor(A066206(n)/A066205(n)).
1, 2, 2, 2, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16
Offset: 1
Keywords
Examples
a(1) = floor(3/2) = 1; a(2) = floor(3*7/(2*5)) = 2; a(3) = floor(3*7*13/(2*5*11)) = 2.
Programs
-
Mathematica
Table[Floor[Product[Prime[2 k], {k, 1, n}]/Product[Prime[2 k - 1], {k, 1, n}]], {n, 1, 200}]
Comments