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

A060842
a(n) = (binomial(2*p,p)-2)/p^2 where p = prime(n).
3
1, 2, 10, 70, 5830, 61542, 8074762, 97909318, 15564141262, 35751803209918, 484316704740126, 1275478863649106070, 252697549582862416198, 3589806968644540547902, 735944382229592689247902, 2233009988826006212007799102, 6997040996166222103946741339278, 103007775714125517422789307317230
OFFSET
1,2
LINKS
FORMULA
a(n) = A177454(n)/A000040(n). - R. J. Mathar, Jan 09 2017
MATHEMATICA
Table[(Binomial[2p, p]-2)/p^2, {p, Prime[Range[20]]}] (* Harvey P. Dale, Mar 05 2023 *)
PROG
(PARI) a(n) = { my(p=prime(n)); (binomial(2*p, p) - 2)/p^2 } \\ Harry J. Smith, Jul 19 2009
CROSSREFS
Sequence in context: A118748 A118752 A362821 * A245834 A271214 A366241
KEYWORD
nonn,changed
AUTHOR
Benoit Cloitre, Feb 13 2003
STATUS
approved