OFFSET
1,1
COMMENTS
A number n is in the sequence if and only if mod(n, A001222(n)^2) == 0 and n is not prime.
Without the restriction that n must be composite, all prime numbers would trivially be included in the sequence.
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..10000
EXAMPLE
a(6)=63=3*3*7, and 63 is divisible by 9=3^2; a(9)=144, which has 6 prime factors and is divisible by 36.
MAPLE
isA224705 := proc(n)
if isprime(n) then
return false;
else
if modp(n, numtheory[bigomega](n)^2) = 0 then
true;
else
false;
end if;
end if;
end proc:
n := 1;
c := 4;
while n <= 10000 do
if isA224705(c) then
printf("%d %d\n", n, c) ;
n := n+1 ;
end if;
c := c+1 ;
end do: # R. J. Mathar, Mar 14 2016
MATHEMATICA
Select[Range[2, 1000], ! PrimeQ[#] && Mod[#, PrimeOmega[#]^2] == 0 &] (* T. D. Noe, Apr 18 2013 *)
PROG
(R) y=c(); i=2; isint<-function(x) x==as.integer(x)
while(length(y)<10000) {Omega=length(factorize(i)); if(Omega>1) if(isint(i/Omega^2)) y=c(y, i); i=i+1 }
CROSSREFS
KEYWORD
nonn
AUTHOR
Kevin L. Schwartz and Christian N. K. Anderson, Apr 16 2013
STATUS
approved
