editing
approved
editing
approved
Integer arithmetical averages arithmetic means of 10 consecutive primes.
Primes are listed in A123096 = (727, 761, 1663, 1783, 1811, ...).
a(1) is derived from (prime(6)+...+prime(15))/10 = (13+ 17+ 19+ 23+ 29+ 31+ 37+ 41+ 43+ 47)/10=30.
approved
editing
editing
approved
Select[Mean/@Partition[Prime[Range[300]], 10, 1], IntegerQ] (* Harvey P. Dale, Aug 28 2021 *)
approved
editing
editing
approved
Also difference 5 seem seems to occur infinitely often. For first 200000 differences, values 5..10 occur 5, 57, 123, 400, 1755, 1439 times . Apparently all differences >4 occur infinitely often. - Zak Seidov, May 22 2015
proposed
editing
editing
proposed
(PARI) lista(nn) = {for (n=1, nn, my(s = sum(k=0, 9, prime(n+k))/10); if (type(s) == "t_INT", print1(s, ", ")); ); } \\ Michel Marcus, May 23 2015
proposed
editing
editing
proposed
(PARI) lista(nn) = {for (n=1, nn, s = sum(k=0, 9, prime(n+k))/10; if (type(s) == "t_INT", print1(s, ", ")); ); } \\ Michel Marcus, May 23 2015
proposed
editing