OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
FORMULA
a(n) ~ (n log n)^3 / 6. - Charles R Greathouse IV, May 10 2017
MATHEMATICA
Table[Binomial[Prime[n + 2], Prime[2]], {n, 1, 40}]
Table[Binomial[Prime[n], 3], {n, 3, 40}] (* Vincenzo Librandi, May 10 2017 *)
PROG
(Magma) [Binomial(NthPrime(n), 3): n in [3..40]]; // Vincenzo Librandi, May 10 2017
(PARI) a(n)=binomial(prime(n+2), 3) \\ Charles R Greathouse IV, May 10 2017
(Sage) [binomial(nth_prime(n+2), 3) for n in (1..40)] # G. C. Greubel, May 29 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Jan 01 2007
EXTENSIONS
Missing n=0 term added by N. J. A. Sloane, May 17 2020
STATUS
approved