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.

A262782 a(n) = sum_{k=1..n} 3^prime(k).

Original entry on oeis.org

9, 36, 279, 2466, 179613, 1773936, 130914099, 1293175566, 95436354393, 68725813719276, 686399210003223, 450970305101000586, 36923966682271786989, 365180934076808864616, 26953995293034312152403, 19410199662973054208949126, 14149796291401707558973760193, 141323271117050318101857059796
Offset: 1

Views

Author

Emre APARI, Mar 24 2016

Keywords

Examples

			a(2) = 3^prime(1) + 3^prime(2) = 3^2+3^3=36.
		

Crossrefs

Cf. A057901.

Programs

  • Mathematica
    Accumulate@ Array[3^Prime@ # &, {18}] (* Michael De Vlieger, Mar 24 2016 *)
  • PARI
    a(n) = sum(k=1, n, 3^prime(k)); \\ Altug Alkan, Mar 24 2016

Extensions

More terms from Michael De Vlieger, Mar 24 2016