A277323 Even bisection of A260443 (the odd terms): a(n) = A260443(2*n).
1, 3, 5, 15, 7, 75, 35, 105, 11, 525, 245, 2625, 77, 3675, 385, 1155, 13, 5775, 2695, 128625, 847, 643125, 18865, 202125, 143, 282975, 29645, 1414875, 1001, 444675, 5005, 15015, 17, 75075, 35035, 15563625, 11011, 346644375, 2282665, 108945375, 1859, 544726875, 15978655, 12132553125, 121121, 3813088125, 2697695
Offset: 0
Keywords
Links
- Antti Karttunen, Table of n, a(n) for n = 0..1024
Programs
-
Mathematica
a[n_] := a[n] = Which[n < 2, n + 1, EvenQ@ n, Times @@ Map[#1^#2 & @@ # &, FactorInteger[#] /. {p_, e_} /; e > 0 :> {Prime[PrimePi@ p + 1], e}] - Boole[# == 1] &@ a[n/2], True, a[#] a[# + 1] &[(n - 1)/2]]; Table[a[2 n], {n, 0, 46}] (* Michael De Vlieger, Apr 05 2017 *)