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

A091454
Integers k such that 3*phi(k) < k.
3
30, 42, 60, 66, 78, 84, 90, 102, 114, 120, 126, 132, 138, 150, 156, 168, 174, 180, 186, 198, 204, 210, 222, 228, 234, 240, 246, 252, 258, 264, 270, 276, 282, 294, 300, 306, 312, 318, 330, 336, 342, 348, 354, 360, 366, 372, 378, 390, 396, 402, 408, 414, 420
OFFSET
1,1
COMMENTS
If k is present so are all m*k, m>1.
The smallest odd number in this sequence is 111546435 = 3*5*7*11*...*23. - T. D. Noe, Jan 15 2004
LINKS
MAPLE
filter:= n -> 3*numtheory:-phi(n) < n:
select(filter, [$1..10000]); # Robert Israel, Jan 13 2020
MATHEMATICA
Select[ Range[437], 3EulerPhi[ # ] < # & ]
PROG
(Magma) [k:k in [1..500]|3*EulerPhi(k) lt k]; // Marius A. Burtea, Jan 13 2020
(PARI) is(n) = 3*eulerphi(n) < n; \\ Amiram Eldar, Apr 07 2024
CROSSREFS
Sequence in context: A308127 A349794 A357685 * A376862 A175727 A296717
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 10 2004
STATUS
approved