A238693 Quotients connected with the Banach matchboxes problem: Sum_{i=1..prime(n)-5} 2^(i-1)*binomial(i+1,2)/prime(n) (case 2).
0, 1, 93, 571, 16143, 79333, 1755225, 160251339, 705725473, 57691858003, 1057609507815, 4500326662525, 80662044522801, 5995948088798691, 437230824840308493, 1820340203482736875, 130228506669621162901, 2230237339841166071433, 9214275012380069727751
Offset: 3
Keywords
Links
- Vladimir Shevelev, Banach matchboxes problem and a congruence for primes, arXiv:1110.5686 [math.HO], 2011.
Programs
-
Mathematica
Array[Sum[2^(i - 1)*Binomial[i + 1, 2]/#, {i, # - 5}] &@ Prime@ # &, 19, 3] (* Michael De Vlieger, Dec 06 2018 *)
-
PARI
a(n) = sum(i=1, prime(n)-5, 2^(i-1)*binomial(i+1,2))/prime(n); \\ Michel Marcus, Dec 06 2018
Extensions
More terms from Peter J. C. Moses, Mar 03 2014
Comments