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”).

A178479
For n=0,1,2,... list all numbers not occurring earlier which can be written as product of the first n primes raised to some nonnegative power not exceeding n.
1
1, 2, 3, 4, 6, 9, 12, 18, 36, 5, 8, 10, 15, 20, 24, 25, 27, 30, 40, 45, 50, 54, 60, 72, 75, 90, 100, 108, 120, 125, 135, 150, 180, 200, 216, 225, 250, 270, 300, 360, 375, 450, 500, 540, 600, 675, 750, 900, 1000, 1080, 1125, 1350, 1500, 1800, 2250, 2700, 3000, 3375
OFFSET
1,2
COMMENTS
Every positive integer occurs exactly once in this sequence, but depending on its largest prime factor, it may appear quite late with respect to larger numbers. E.g. prime(4)=7=a(65) appears after a(4^3)=27000=(2*3*5)^3, prime(5)=11=a(626) appears after a(5^4)=(2*3*5*7)^4=1944810000.
First A000169(n) terms are the divisors of A181555(n), and a(A000169(n))=A181555(n). [From Matthew Vandermast, Oct 31 2010]
EXAMPLE
n=0, n=1 and n=2 give a(1)=1 (empty product), a(2)=2=prime(1)^1,
and a(3..9) = 3, 4, 6, 9, 12, 18, 36: numbers 2^a 3^b with a,b <= 2.
n=3 gives a(10..64) = 5, 8, 10, 12, 15, 18...: numbers 2^a 3^b 5^c not occurring earlier, with a,b,c <= 3.
PROG
(PARI) { s=[]; for( L=0, 3, a=[]; forvec( v=vector(L, i, [0, L]), setsearch( s, t=prod( j=1, L, prime(j)^v[L-j+1] )) & next; s=setunion(s, Set(t)); a=concat(a, t)); apply(x->print1(x", "), vecsort(a))) }
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, May 31 2010
STATUS
approved