OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
Conjecture: a(n) = A181795(n)/2.
EXAMPLE
8 is a term because it is twice 4, which is square, and 8 is refactorable.
MAPLE
filter:= proc(n) n mod numtheory:-tau(n) = 0 end proc:
select(filter, [seq(2*i^2, i=1..1000)]); # Robert Israel, Oct 10 2024
MATHEMATICA
Select[Range[2, 10^5], IntegerQ@Sqrt[#/2]&&Divisible[#, DivisorSigma[0, #]]&]
PROG
(PARI) ok(n)=n%numdiv(n)==0&&issquare(n/2)
(Python)
from itertools import count, islice
from math import prod
from sympy import factorint
def A376114_gen(): # generator of terms
for n in count(1):
k = prod((e<<1|1)+(p==2) for p, e in factorint(n).items())
if not (m:=n**2<<1)%k: yield m
CROSSREFS
KEYWORD
nonn
AUTHOR
Waldemar Puszkarz, Sep 10 2024
STATUS
approved