login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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.
1
1, 2, 6, 7429, 215441, 6678671, 9586934839, 584803025179, 1985383050388741, 204494454190040323, 21880906598334314561, 2385018819218440287149, 269507126571683752447837, 34227405074603836560875299
OFFSET
0,2
COMMENTS
Each term of this sequence is squarefree.
EXAMPLE
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
MATHEMATICA
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 *)
CROSSREFS
Cf. A162145.
Sequence in context: A116899 A357193 A355556 * A231545 A055698 A121167
KEYWORD
base,nonn
AUTHOR
Leroy Quet, Jun 25 2009
EXTENSIONS
More terms from Robert G. Wilson v, Aug 16 2009
STATUS
approved