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.
%I A133524 #9 Dec 09 2018 17:08:45 %S A133524 87,204,364,628,940,1348,2020,2692,3700,4852,5860,7108,8548,10348, %T A133524 12220,14500,16732,18580,21100,23500,26380,30460,34420,38140,41668, %U A133524 44140,46708,52228,57940,64828,71380,77452,83092,88972,96220,101908,109036 %N A133524 Sum of squares of four consecutive primes. %H A133524 Charles R Greathouse IV, <a href="/A133524/b133524.txt">Table of n, a(n) for n = 1..10000</a> %F A133524 a(n) = A133529(n) + A001248(n+3). - _Michel Marcus_, Nov 08 2013 %F A133524 a(n) ~ 4n^2 log^2 n. - _Charles R Greathouse IV_, Apr 29 2015 %e A133524 a(1)=87 because 2^2+3^2+5^2+7^2=87. %t A133524 a = 2; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a, {n, 1, 100}] %t A133524 Total/@Partition[Prime[Range[40]]^2,4,1] (* _Harvey P. Dale_, Dec 09 2018 *) %o A133524 (PARI) a(n)=sum(i=n, n+3, prime(i)^2) \\ _Charles R Greathouse IV_, Apr 29 2015 %Y A133524 Cf. A034963. %K A133524 nonn %O A133524 1,1 %A A133524 _Artur Jasinski_, Sep 14 2007