login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Each term of this sequence is squarefree.
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 16:28 EDT 2024. Contains 371254 sequences. (Running on oeis4.)