login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A348936 Numbers k congruent to 1 or 5 mod 6, for which A064989(A064989(sigma(k^2))) > A064989(A064989(k^2)), where A064989 shifts the prime factorization one step towards lower primes, and sigma is the sum of divisors function. 3
5, 7, 11, 13, 17, 25, 29, 35, 41, 49, 55, 59, 65, 71, 77, 85, 89, 91, 95, 101, 115, 119, 121, 125, 131, 143, 145, 155, 161, 167, 169, 173, 175, 185, 187, 203, 205, 209, 215, 221, 227, 235, 245, 253, 265, 275, 287, 289, 293, 295, 305, 319, 323, 325, 329, 343, 355, 361, 365, 377, 383, 385, 391, 413, 415, 425, 445, 451 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Square roots of squares present in A348754.
See comments in A348935.
LINKS
MATHEMATICA
f[2, e_] := 1; f[p_, e_] := NextPrime[p, -1]^e; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[450], MemberQ[{1, 5}, Mod[#, 6]] && s[s[DivisorSigma[1, #^2]]] > s[s[#^2]] &] (* Amiram Eldar, Nov 04 2021 *)
PROG
(PARI)
A064989(n) = {my(f); f = factor(n); if((n>1 && f[1, 1]==2), f[1, 2] = 0); for (i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f)};
isA348936(n) = ((n%2)&&(n%3)&&(A064989(A064989(sigma(n^2))) > A064989(A064989(n^2))));
CROSSREFS
Sequence in context: A023201 A106059 A102386 * A346990 A038958 A109416
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 04 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 10 11:28 EDT 2024. Contains 372387 sequences. (Running on oeis4.)