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

A337374
Numbers k for which A003961(k) > 4*k.
3
16, 18, 24, 27, 32, 36, 40, 48, 54, 56, 60, 63, 64, 72, 80, 81, 84, 90, 96, 100, 104, 108, 112, 120, 126, 128, 132, 135, 140, 144, 147, 150, 152, 156, 160, 162, 168, 176, 180, 184, 189, 192, 196, 198, 200, 204, 208, 210, 216, 224, 225, 228, 234, 240, 243, 248, 250, 252, 256, 260, 264, 270, 272, 276, 280, 288, 294, 297
OFFSET
1,1
MAPLE
filter:= proc(n) local F, t;
F:= ifactors(n)[2];
mul((nextprime(t[1])/t[1])^t[2], t=F) > 4
end proc:
select(filter, [$1..1000]); # Robert Israel, Dec 31 2023
MATHEMATICA
filter[n_] := With[{F = FactorInteger[n]}, Product[(NextPrime[t[[1]]]/t[[1]])^t[[2]], {t, F}] > 4];
Select[Range[1000], filter] (* Jean-François Alcover, Sep 25 2024, after Robert Israel *)
PROG
(PARI)
A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
isA337374(n) = (A003961(n) > (4*n));
CROSSREFS
Cf. A003961.
Subsequence of A337373, and of A246282.
Sequence in context: A097746 A081258 A317423 * A255847 A160778 A057369
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 26 2020
STATUS
approved