This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A120044 #2 Mar 30 2012 17:31:20 %S A120044 8,45,412,3918,38991,395085,4046429,41657362,429891626,4439956573, %T A120044 45851698382,473238120286,4880292241955,50280826966354 %N A120044 The 10^n-th 3-almost prime. %t A120044 ThreeAlmostPrimePi[n_] := Sum[ PrimePi[n/(Prime@i*Prime@j)] - j + 1, {i, PrimePi[n^(1/3)]}, {j, i, PrimePi@ Sqrt[n/Prime@i]}]; ThreeAlmostPrime[n_] := Block[{e = Floor[Log[2, n]], a, b}, a = 2^e; Do[b = 2^p; While[ThreeAlmostPrimePi[a] < n, a = a + b]; a = a - b/2, {p, e, 0, -1}]; a + b/2]; Do[ Print@ThreeAlmostPrime[10^n], {n, 0, 13}] %t A120044 ThreePrime[n_] := Block[{e = Floor[ Log[2, n] +2], a, b}, a = 2^e; Do[b = 2^p; While[ ThreePrimePi[a] < n, a = a + b]; a = a - b/2, {p, e, 0, -1}]; a + b/2]; Table[ ThreePrime[n], {n, 0, 13}] %Y A120044 Cf. A109251, A006988, A114125, A120045, A120046. %K A120044 more,nonn %O A120044 0,1 %A A120044 _Robert G. Wilson v_, Feb 15 2006