cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A175662 Sum of primes between successive cubes of primes.

This page as a plain text file.
%I A175662 #5 May 21 2025 01:24:09
%S A175662 83,1493,8598,123195,193812,1156479,1326972,5453537,22783052,14120477,
%T A175662 78914972,98903830,69672945,194745797,483371646,825367975,382036554,
%U A175662 1550852585,1492923061,891424555,3529278157,3176100712,6359190073
%N A175662 Sum of primes between successive cubes of primes.
%F A175662 a(n) = sum of primes between (prime(n))^3 and (prime(n+1))^3.
%t A175662 Table[Total[Select[Range[Prime[n]^3,Prime[n+1]^3],PrimeQ]],{n,30}]
%o A175662 (PARI) a(n) = vecsum(primes([prime(n)^3, prime(n+1)^3])); \\ _Michel Marcus_, May 21 2025
%Y A175662 Cf. A030078 (cubes of primes), A365767 (number of primes in between).
%Y A175662 Cf. A175037 (between successive squares of primes).
%K A175662 nonn
%O A175662 1,1
%A A175662 _Zak Seidov_, Aug 04 2010