login
A060430
Residue C(2^n,n) mod C(2^n,2).
2
0, 0, 0, 20, 0, 1344, 0, 8160, 0, 349184, 0, 1397760, 0, 0, 306774016, 268431360, 0, 7635468288, 0, 494779760640, 942438088704, 0, 0, 105553109975040, 0, 0, 0, 6004799480791040, 0, 192153583922184192, 0, 576460752169205760, 0, 49191317527028826112, 0
OFFSET
1,4
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..1664 (terms 1..200 from Harry J. Smith)
FORMULA
a(n) = A014070(n) mod A006516(n).
MAPLE
for n from 1 to 60 do printf(`%d, `, binomial(2^n, n) mod binomial(2^n, 2)) od:
MATHEMATICA
Table[Mod[Binomial[2^n, n], Binomial[2^n, 2]], {n, 40}] (* Harvey P. Dale, Feb 11 2015 *)
PROG
(Python)
from math import comb
def A060430(n): return comb(m:=1<<n, n)%comb(m, 2) # Chai Wah Wu, Aug 01 2025
CROSSREFS
Sequence in context: A221335 A298672 A198800 * A365911 A040404 A040405
KEYWORD
easy,nonn
AUTHOR
Labos Elemer, Apr 11 2001
EXTENSIONS
More terms from James Sellers, Apr 12 2001
Offset corrected by Harry J. Smith, Jul 05 2009
STATUS
approved