OFFSET
3,1
COMMENTS
Different from the anti-primorial, which is the partial products of anti-primes.
LINKS
Hakan Icoz, Table of n, a(n) for n = 3..150
FORMULA
EXAMPLE
a(11) = (anti-divisors of 3) * (anti-divisors of 4) * ... * (anti-divisors) of 11 = (2) * (3) * (2 * 3) * (4) * (2 * 3 * 5) * (3 * 5) * (2 * 6) * (3 * 4 * 7) * (2 * 3 * 7) = 2743372800.
MAPLE
A130874 := proc(n)
mul( A091507(i), i=1..n) ;
end proc:
seq(A130874(n), n=3..20) ; # R. J. Mathar, Jan 24 2022
PROG
(Python)
from sympy.ntheory.factor_ import antidivisors
def A130874():
sum = 1
i = 2 #(offset-1)
while True:
i += 1
for j in antidivisors(i):
sum *= j
yield sum
if i == 50:#Generator stops after calculating a(50)
break
for i in A130874():
print(i) # Hakan Icoz, Dec 26 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Jonathan Vos Post, Jul 25 2007
EXTENSIONS
More terms from Hakan Icoz, Dec 25 2021
STATUS
approved