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.

A135176 5^p + 3^p + 2^p, where p = prime(n).

Original entry on oeis.org

38, 160, 3400, 80440, 49007320, 1222305640, 763068724360, 19074649113880, 11921023106645560, 186264583554009938920, 4656613490752936345720, 72759576592118302363153960, 45474735125119410471945995080, 1136868377544417273584428927960, 710542735786689000370819259221240
Offset: 1

Views

Author

Omar E. Pol, Nov 25 2007

Keywords

Examples

			a(4)=80440 because the 4th prime number is 7, 5^7=78125, 3^7=2187, 2^7=128 and 78125+2187+128=80440.
		

Crossrefs

Cf. 2^p: A034785. 3^p: A057901. 2^5: A057902.

Programs

  • Magma
    [5^p+3^p+2^p: p in PrimesUpTo(100)]; // Vincenzo Librandi Dec 14 2010
  • Mathematica
    Table[5^p + 3^p + 2^p, {p, Prime[Range[20]]}] (* Vincenzo Librandi, May 24 2014 *)

Formula

p=A000040(n): a(n)= 5^p + 3^p + 2^p.

Extensions

More terms from Vincenzo Librandi, Dec 14 2010