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

A289278
a(n) = A005259(n) mod (2*n+1)^2.
2
0, 5, 23, 24, 34, 77, 22, 140, 50, 44, 169, 473, 354, 539, 198, 801, 385, 135, 1207, 617, 1483, 52, 2023, 528, 723, 2273, 2567, 1265, 1303, 2813, 550, 233, 1775, 188, 2365, 728, 154, 1520, 4180, 5585, 571, 236, 3650, 2672, 714, 4581, 4966, 2490, 8931, 4796, 1566
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Apéry Number
FORMULA
If m = 2*n + 1 is a prime, a(n) = A030211(n) mod m^2.
MATHEMATICA
Table[Mod[Sum[(Binomial[n, k] Binomial[n + k, k])^2, {k, 0, n}], (2n + 1)^2], {n, 0, 100}] (* Indranil Ghosh, Jul 01 2017 *)
PROG
(PARI) a(n) = sum(k=0, n, (binomial(n, k)*binomial(n+k, k))^2) % (2*n+1)^2; \\ Michel Marcus, Jul 01 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 01 2017
STATUS
approved