STATUS
proposed
approved
proposed
approved
editing
proposed
(Python)
from sympy import prime
def a(n): return prime(n) * n*(n+1)//2
print([a(n) for n in range(1, 41)]) # Michael S. Branicky, Sep 01 2022
approved
editing
proposed
approved
editing
proposed
Subsequence of A085783. - Michel Marcus, May 15 2018
approved
editing
editing
approved
This idea sequence is mentioned in A077320. - Omar E. Pol, Mar 12 2012
proposed
editing
editing
proposed
N-th prime times n-th triangular number
a(n) = prime(n)*T(n), where T = A000217.
a(n) ~ 0.5 n^3 log n. [_- _Charles R Greathouse IV_, Nov 22 2011]
The 4th prime is 7; , the 4th triangular number is 10; , therefore a(4) = 7 * 10 = 70.
reviewed
editing