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!)
A348005 Positive even integers with an even number of even divisors. 2
4, 6, 10, 12, 14, 16, 20, 22, 24, 26, 28, 30, 34, 36, 38, 40, 42, 44, 46, 48, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
These terms are exactly the even numbers in A183300.
Complement of A001105 relative to the positive even integers (A005843 \ {0}).
Note that odd integers with an odd number of odd divisors are the odd squares (A016754).
LINKS
FORMULA
a(n) = 2*A000037(n).
EXAMPLE
The divisors of 14 are {1, 2, 7, 14}, two of them: 2 and 14 are even, hence 14 is a term.
The divisors of 16 are {1, 2, 4, 8, 16}, four of them: 2, 4, 8 and 16 are even, hence 16 is another term.
MAPLE
filter:= q -> irem(q, 2) = 0 and sqrt(q/2) <> floor(sqrt(q/2)) : select(filter, [$1..156]);
MATHEMATICA
m = 9; 2 * Complement[Range[m^2], Range[m]^2] (* Amiram Eldar, Oct 02 2021 *)
PROG
(PARI) isok(k) = !(k % 2) && !(sumdiv(k, d, !(d % 2)) % 2); \\ Michel Marcus, Oct 05 2021
(Python)
from math import isqrt
def A348005(n): return n+(m:=isqrt(n))+int(n-m*(m+1)>=1)<<1 # Chai Wah Wu, Aug 04 2022
CROSSREFS
Equals A183300 \ A005408.
Intersection of A005843 and A183300.
-------------------------------------------------------------------------
| Integers with | an even number of ... | an odd number of ... |
-------------------------------------------------------------------------
| ... even divisors | A183300 | A001105 |
| ... odd divisors | A028983 | A028982 |
-------------------------------------------------------------------------
Sequence in context: A137230 A369896 A283564 * A181794 A199536 A284883
KEYWORD
nonn
AUTHOR
Bernard Schott, Oct 02 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 5 20:05 EDT 2024. Contains 372287 sequences. (Running on oeis4.)