login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A135176
5^p + 3^p + 2^p, where p = prime(n).
1
38, 160, 3400, 80440, 49007320, 1222305640, 763068724360, 19074649113880, 11921023106645560, 186264583554009938920, 4656613490752936345720, 72759576592118302363153960, 45474735125119410471945995080, 1136868377544417273584428927960, 710542735786689000370819259221240
OFFSET
1,1
LINKS
FORMULA
p=A000040(n): a(n)= 5^p + 3^p + 2^p.
EXAMPLE
a(4)=80440 because the 4th prime number is 7, 5^7=78125, 3^7=2187, 2^7=128 and 78125+2187+128=80440.
MATHEMATICA
Table[5^p + 3^p + 2^p, {p, Prime[Range[20]]}] (* Vincenzo Librandi, May 24 2014 *)
PROG
(Magma)[5^p+3^p+2^p: p in PrimesUpTo(100)]; // Vincenzo Librandi Dec 14 2010
CROSSREFS
Cf. 2^p: A034785. 3^p: A057901. 2^5: A057902.
Sequence in context: A158064 A251253 A224739 * A318625 A281208 A100167
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Nov 25 2007
EXTENSIONS
More terms from Vincenzo Librandi, Dec 14 2010
STATUS
approved