A114604 Numerator of partial sums of A005329/A006125.
1, 5, 43, 709, 23003, 1481957, 190305691, 48796386661, 25003673060507, 25613941912987493, 52467767892904362139, 214929296497738201165669, 1760788099067877263041671323, 28849467307107603960961499533157
Offset: 0
Examples
a(3) = 43 because 1/2 + 1/8 + 3/64 = 43/64, or because a(2) * 2^(2+1) + A005329(2) = 5 * 8 + 3 = 43.
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..80
- Johann Cigler, Hankel determinants of backward shifts of powers of q, arXiv:2407.05768 [math.CO], 2024. See p. 4.
Programs
-
Mathematica
Nest[Append[#1, #1[[-1]]*2^(#2 + 1) + Product[2^i - 1, {i, #2}]] & @@ {#, Length[#]} &, {1}, 13] (* Michael De Vlieger, Jul 15 2024 *)
Comments