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 A133548 #19 Oct 31 2024 15:27:47 %S A133548 27,152,495,1826,4023,8936,15795,27962,52351,82142,132795,201716, %T A133548 281223,385046,533923,739302,966283,1267046,1624957,2013974,2507013, %U A133548 3078800,3783769,4696442,5726743,6819470,8044513,9339542,10782439,12830822,15078913,17650266 %N A133548 a(n) = sum of cubes of first n odd primes. %H A133548 Harvey P. Dale, <a href="/A133548/b133548.txt">Table of n, a(n) for n = 1..1000</a> %F A133548 a(n) = A098999(n+1) - 8. %e A133548 a(3)=495 because 3^3+5^3+7^3=495. %t A133548 c = 3; a = {}; b = 0; Do[b = b + Prime[n]^c; AppendTo[a, b], {n, 2, 1000}]; a %t A133548 Accumulate[Prime[Range[2,40]]^3] (* _Harvey P. Dale_, Oct 31 2024 *) %o A133548 (PARI) a(n) = sum(i=2, n+1, prime(i)^3); \\ _Michel Marcus_, Nov 05 2013 %Y A133548 Cf. A007148, A007504, A024450, A098999, A133547, A133549, A133550, A133551. %K A133548 nonn,easy %O A133548 1,1 %A A133548 _Artur Jasinski_, Sep 16 2007, corrected Jun 08 2008 %E A133548 More terms from _Michel Marcus_, Nov 05 2013