A087250 Duplicate of A065301.
1, 2, 5, 13, 26, 29, 37, 41, 61, 73, 74, 101, 109, 113, 122, 137, 146, 157, 173, 181, 193
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
For k=7: sigma(7) = 2*2*2 = 8. For k=10: sigma(10) = 1 + 2 + 5 + 10 = 18 = 2*3*3.
Select[Range[150],SquareFreeQ[#]&&!SquareFreeQ[DivisorSigma[1,#]]&] (* Harvey P. Dale, Feb 06 2011 *)
is(k) = issquarefree(k) && !issquarefree(sigma(k)); \\ Amiram Eldar, Jun 15 2024
Select[Range[3000], !PrimeQ[#] && SquareFreeQ[#] && SquareFreeQ[DivisorSigma[1, #]] &] (* Amiram Eldar, Jun 05 2025 *)
isok(m) = !isprime(m) && moebius(m) && moebius(sigma(m)); \\ Harry J. Smith, Oct 16 2009
k = 45 = 3*3*5 and sigma(45) = 78 = 2*3*13.
filter:= n -> not numtheory:-issqrfree(n) and numtheory:-issqrfree(numtheory:-sigma(n)): select(filter, [$1..1000]); # Robert Israel, May 11 2018
q[k_] := ! SquareFreeQ[k] && SquareFreeQ[DivisorSigma[1, k]]; Select[Range[600], q] (* Amiram Eldar, Feb 24 2025 *)
isok(k) = !issquarefree(k) && issquarefree(sigma(k)); \\ Amiram Eldar, Feb 24 2025
Comments