A077023
Integer values of sum of first k primes squared divided by k-th prime, for some k (A077022).
Original entry on oeis.org
2, 29, 284, 410066261, 941945317
Offset: 1
29 is a term because A024450(6)/prime(6) = 29;
284 is a term because A024450(17)/prime(17) = 284;
410066261 is a term because A024450(11156)/prime(11156) = 410066261;
941945317 is a term because A024450(16548)/prime(16548) = 941945317.
A077022
Values of k such that sum of first k primes squared is divisible by k-th prime.
Original entry on oeis.org
1, 6, 17, 11156, 16548
Offset: 1
6 is a term because A024450(6)/prime(6) = 29;
17 is a term because A024450(17)/prime(17) = 284;
11156 is a term because A024450(11156)/prime(11156) = 410066261;
16548 is a term because A024450(16548)/prime(16548) = 941945317.
-
Module[{nn=17000,prs},prs=Accumulate[Prime[Range[nn]]^2];Select[Range[ nn],Divisible[prs[[#]],Prime[#]]&]] (* Harvey P. Dale, Nov 23 2013 *)
Showing 1-2 of 2 results.
Comments