A109162 a(1) = 1; for n > 1, a(n) = A019565(a(n-1)).
1, 2, 3, 6, 15, 210, 10659, 54230826, 249853434654335387610276087
Offset: 1
Keywords
Examples
a(4) = 6, which is 110 in binary. So a(5) is the product of the primes corresponding to the 1's of 110, 3*5 = 15.
Links
- Frank Adams-Watters, Table of n, a(n) for n = 1..11
Crossrefs
Programs
-
Mathematica
NestList[Times @@ Prime@ Flatten@ Position[#, 1] &@ Reverse@ IntegerDigits[#, 2] &, 1, 11] (* Michael De Vlieger, Aug 20 2017 *)
Extensions
More terms from Franklin T. Adams-Watters, Aug 29 2006
Comments