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”).

A261726
a(n) = binomial(prime(n+1)-1, prime(n)-1).
1
2, 6, 15, 210, 66, 1820, 153, 7315, 376740, 435, 1947792, 91390, 861, 163185, 20358520, 40475358, 1770, 90858768, 916895, 2556, 256851595, 1749060, 541931236, 132601016340, 3921225, 5151, 4967690, 5778, 6210820, 1378095785451705375, 11358880, 7858539612
OFFSET
1,1
LINKS
FORMULA
a(n) = binomial(prime(n+1)-1, prime(n)-1).
EXAMPLE
For n = 2, a(n) = binomial(prime(n+1)-1, prime(n)-1) = binomial(4,2) = 6.
MATHEMATICA
Binomial[#[[2]]-1, #[[1]]-1]&/@Partition[Prime[Range[40]], 2, 1] (* Harvey P. Dale, Apr 01 2021 *)
PROG
(PARI) a(n) = binomial(prime(n+1)-1, prime(n)-1);
vector(35, n, a(n))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, Sep 14 2015
STATUS
approved