OFFSET
1,1
COMMENTS
First three nonmultiples of 5 occur at a(138), a(276), a(356) = 4446981, 8909901, 11234223. (Cf. A005231, A064001).
First term that is also a term of A228058 (and of A229125) is a(16855) = 666996525. See also A386430, A387160.
Odd nonsquare nondeficient numbers such that when x = A276086(n), then for all odd primes p, min(v_p(x), v_p(sigma(n))) is equal to min(v_p(x), v_p(n)), where v_p(.) stands for the p-adic valuation. Thus, either p^e||n and p^e||sigma(n) when v_p(x) >= e, or v_p(x) <= v_p(n) and v_p(x) <= v_p(sigma(n)). - Antti Karttunen, Sep 18 2025
LINKS
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
(PARI) is_A387165(n) = if(sigma(n)<2*n, 0, my(p=2, s=sigma(n), x=n, vnp, vsp); while(x, vnp = valuation(n, p); vsp = valuation(s, p); if(min((x%p), vsp) != (2==p)+min((x%p), vnp), return(0)); x = x\p; p = nextprime(1+p)); (1)); \\ Antti Karttunen, Sep 17 2025
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Aug 28 2025
STATUS
approved
