OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..349
FORMULA
For n > 1, a(n) = A054640(n-1) * prime(n).
EXAMPLE
The initial terms are:
2 = 2
9 = 3 + 6
60 = 5 + 10 + 15 + 30
MAPLE
f:= proc(n) local i;
ithprime(n) *mul(1+ithprime(i), i=1..n-1)
end proc:
map(f, [$1..20]); # Robert Israel, Dec 08 2020
MATHEMATICA
Table[Sum[Times@@Prime/@stn, {stn, Select[Subsets[Range[n]], MemberQ[#, n]&]}], {n, 10}]
CROSSREFS
A048672 takes prime indices to binary indices in squarefree numbers.
A072047 counts prime factors of squarefree numbers.
A339195 has this as row sums.
A002110 lists primorials.
A005117 lists squarefree numbers.
A006881 lists squarefree semiprimes.
A056239 is the sum of prime indices of n (Heinz weight).
A319246 is the sum of prime indices of the n-th squarefree number.
A319247 lists reversed prime indices of squarefree numbers.
A329631 lists prime indices of squarefree numbers.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 04 2020
STATUS
approved