A058077 Binomial coefficients formed from consecutive primes: a(n) = binomial( prime(n+1), prime(n) ).
3, 10, 21, 330, 78, 2380, 171, 8855, 475020, 465, 2324784, 101270, 903, 178365, 22957480, 45057474, 1830, 99795696, 971635, 2628, 277962685, 1837620, 581106988, 144520208820, 4082925, 5253, 5160610, 5886, 6438740
Offset: 1
Keywords
Examples
n=6: a(6) = C(p(7),p(6)) = C(17,13) = 57120/24 = 2380.
Links
- Michel Marcus, Table of n, a(n) for n = 1..10000
- Rémy Sigrist, Colored logarithmic scatterplot of the first 100000 terms (where the color is function of A001223(n))
Programs
-
Mathematica
Table[Binomial[Prime[n+1],Prime[n]],{n,1,20}] (* Vaclav Kotesovec, Nov 13 2014 *)
Extensions
Offset corrected by Vaclav Kotesovec, Nov 13 2014
Comments