|
|
A339360
|
|
Sum of all squarefree numbers with greatest prime factor prime(n).
|
|
9
|
|
|
2, 9, 60, 504, 6336, 89856, 1645056, 33094656, 801239040, 24246190080, 777550233600, 29697402470400, 1250501433753600, 55083063155097600, 2649111037319577600, 143390180403000115200, 8619643674791667302400, 534710099148093259776000, 36412881178052121329664000
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
LINKS
|
|
|
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:
|
|
MATHEMATICA
|
Table[Sum[Times@@Prime/@stn, {stn, Select[Subsets[Range[n]], MemberQ[#, n]&]}], {n, 10}]
|
|
CROSSREFS
|
A010036 takes prime indices here to binary indices, row sums of A209862.
A048672 takes prime indices to binary indices in squarefree numbers.
A072047 counts prime factors of 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
|
|
|
STATUS
|
approved
|
|
|
|