A353743 Least number with run-sum trajectory of length k; a(0) = 1.
1, 2, 4, 12, 84, 1596, 84588, 11081028, 3446199708, 2477817590052, 4011586678294188, 14726534696017964148, 120183249654202605411828, 2146833388573021140471483564, 83453854313999050793547980583372, 7011542477899258250521520684673165324
Offset: 0
Keywords
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 4: {1,1} 12: {1,1,2} 84: {1,1,2,4} 1596: {1,1,2,4,8} 84588: {1,1,2,4,8,16}
Crossrefs
Programs
-
Mathematica
Join[{1,2},Table[2*Product[Prime[2^k],{k,0,n}],{n,0,6}]]
Formula
a(n > 1) = 2 * Product_{k=0..n-2} prime(2^k).
a(n > 0) = 2 * A325782(n).
Comments