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

A207481
Numbers such that e <= p for all p^e in their prime factorization, p prime.
12
1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76
OFFSET
1,2
COMMENTS
Proper subsequence of A047592, a(n) = A047592(n) for n <= 70.
The asymptotic density of this sequence is Product_{p prime} 1 - 1/p^(p+1) = 0.86414207232219778408... - Amiram Eldar, Nov 24 2020
LINKS
MATHEMATICA
okQ[n_] := AllTrue[FactorInteger[n], #[[2]] <= #[[1]]&];
Select[Range[100], okQ] (* Jean-François Alcover, Jun 08 2016 *)
PROG
(Haskell)
a207481 n = a207481_list !! (n-1)
a207481_list = [x | x <- [1..], and $ zipWith (<=)
(map toInteger $ a124010_row x) (a027748_row x) ]
CROSSREFS
Cf. A185359 (complement), A054743 (same construction, but with e > p)
Sequence in context: A329135 A182768 A368917 * A047592 A187320 A255805
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Feb 18 2012
STATUS
approved