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.

A358004 Sum of the first n prime numbers with each term raised to the power of the corresponding n-th row of Pascal's triangle.

Original entry on oeis.org

2, 5, 16, 161, 18120, 292402183, 83969544989433334, 2810244063625364115255545874032279213
Offset: 1

Views

Author

Philip Trett, Oct 24 2022

Keywords

Examples

			a(2) = 2^1 + 3^2 + 5^1 = 16.
a(5) = 2^1 + 3^4 + 5^6 + 7^4 + 11^1 = 18120.
		

Crossrefs

Formula

a(n) = Sum_{k=1..n} prime(k)^binomial(n-1,k-1).