A122093 Product of the first n 4-almost primes, divided by product of the first n primes, rounded down.
8, 64, 460, 2633, 12926, 55682, 196527, 837826, 3059886, 9285173, 26956956, 72856639, 184807084, 541527736, 1520886410, 3873955950, 8929796766, 20494615529, 45883467602, 98229395430, 209914872426, 488915652233, 1113313955086, 2451792530303, 5004689907217
Offset: 1
Examples
a(1) = floor(16/2) = floor(8) = 8. a(2) = floor((16*24)/(2*3)) = floor(384/6) = floor(64) = 64. a(3) = floor(13824/30) = floor(460.8) = 460. a(4) = floor(552960/210) = floor(2633.14286) = 2633.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
q = Select[Range[1000], PrimeOmega[#] == 4 &]; m = 1; Table[ Floor[ m *= q[[i]]/ Prime[i]], {i, Length@ q}] (* Giovanni Resta, Jun 13 2016 *)
Formula
Extensions
a(11)-a(25) from Giovanni Resta, Jun 13 2016
Comments