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!)
A371082 Composite numbers for which A324644(n)/A324198(n) = 2 and sigma(n) == 2 (mod 4). 2
153, 477, 637, 909, 1017, 1233, 1557, 2097, 3577, 4753, 9457, 10693, 10933, 12393, 13357, 14013, 15337, 17629, 20817, 21097, 21217, 22021, 26353, 29449, 30037, 30717, 31117, 31149, 31797, 32013, 32229, 32337, 32481, 32977, 35557, 35917, 38637, 38725, 41797, 42237, 50029, 53557, 56497, 56677, 56953, 58621, 59437, 60309 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
f[x_] := Block[{m, i, n = x, p}, m = i = 1; While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; m]; Select[Select[Range[2^16], CompositeQ], GCD[#2, #3]/GCD[#1, #3] == Mod[#2, 4] == 2 & @@ {#, DivisorSigma[1, #], f[#]} &] (* Michael De Vlieger, Mar 10 2024 *)
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
isA371082(n) = if(isprime(n) || (2!=(sigma(n)%4)), 0, my(u=A276086(n)); (gcd(sigma(n), u)==2*gcd(n, u)));
CROSSREFS
Intersection of A191218 and A364286.
Sequence in context: A256741 A349696 A246629 * A325376 A256740 A199851
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 10 2024
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 April 30 20:43 EDT 2024. Contains 372141 sequences. (Running on oeis4.)