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 A162146 #9 Aug 01 2015 21:36:49 %S A162146 1,2,6,7429,215441,6678671,9586934839,584803025179,1985383050388741, %T A162146 204494454190040323,21880906598334314561,2385018819218440287149, %U A162146 269507126571683752447837,34227405074603836560875299 %N A162146 a(n) = the smallest positive integer divisible by exactly n distinct primes, where each of these primes has the same number of digits when written in binary. %C A162146 Each term of this sequence is squarefree. %e A162146 For a(2), 6 = 2 (10_b) * 3 (11_b), For a(3), 7429 = 17 (10001_b) * 19 (10011_b) * 23 (10111_b), For a(4), 215441 = 17 (10001_b) * 19 (10011_b) * 23 (10111_b) * 29 (11101_b), etc. - _Robert G. Wilson v_, Aug 16 2009 %t A162146 f[n_] := Block[{k = 1}, While[p = Select[ Table[i, {i, 2^k, 2^(k + 1) - 1}], PrimeQ@# &]; len = Length@p; len < n, k++ ]; Times @@ Take[p, n]]; Table[ f@n, {n, 0, 15}] (* _Robert G. Wilson v_, Aug 16 2009 *) %Y A162146 Cf. A162145. %K A162146 base,nonn %O A162146 0,2 %A A162146 _Leroy Quet_, Jun 25 2009 %E A162146 More terms from _Robert G. Wilson v_, Aug 16 2009