OFFSET
1,2
COMMENTS
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16384
Michael De Vlieger, Fan style binary tree of a(n), n = 1..2^12, color coded to show the smallest values in the range r = (2^r - 1)..2^(r+1) in blue and highlighting the largest with red.
EXAMPLE
MATHEMATICA
nn = 128; Array[Set[a[#], #] &, 2]; Do[If[EvenQ[n], Set[a[n], 2 a[n/2]], Set[a[n], Times @@ Power @@@ Map[{Prime[PrimePi[#1] + 1], #2} & @@ # &, FactorInteger[a[(n + 1)/2]]]]], {n, 3, nn}]; Array[Times @@ Map[a, Power @@@ FactorInteger[#]] &, nn] (* Michael De Vlieger, Sep 18 2022 *)
PROG
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Feb 15 2019
STATUS
approved