cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A060497 a(n) = binomial(2^n, prime(n)).

Original entry on oeis.org

1, 4, 56, 11440, 129024480, 13136858812224, 614965786737727286400, 23665616042362569982121184000, 4818341997044953599090397918009939136000, 150781781287041846344613980638793530715139659227762775040
Offset: 1

Views

Author

Labos Elemer, Apr 11 2001

Keywords

Examples

			n = 4, a(4) = binomial(16,7) = binomial(2^4, p(4)) = 11440.
		

Crossrefs

Programs

  • PARI
    a(n) = { binomial(2^n, prime(n)) } \\ Harry J. Smith, Jul 06 2009