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.

A133532 Sum of fifth powers of three consecutive primes.

This page as a plain text file.
%I A133532 #8 Nov 21 2013 12:49:07
%S A133532 3400,20175,180983,549151,1952201,4267249,10332299,29423591,55576643,
%T A133532 118484257,213829309,332208601,492209651,794548943,1362464799,
%U A133532 1977716093,2909645707,3998950759,5227426051,6954357343,9089168635
%N A133532 Sum of fifth powers of three consecutive primes.
%F A133532 a(n) = A133536(n) + A050997(n+2). - _Michel Marcus_, Nov 09 2013
%e A133532 a(1)=3400 because 2^5+3^5+5^5=3400.
%t A133532 a = 5; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a, {n, 1, 100}]
%t A133532 Total[#^5]&/@Partition[Prime[Range[30]],3,1] (* _Harvey P. Dale_, May 26 2011 *)
%Y A133532 Cf. A034963, A133524, A133525, A133526, A133527, A133528, A133529, A133530, A133531, A133533.
%K A133532 nonn
%O A133532 1,1
%A A133532 _Artur Jasinski_, Sep 14 2007