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.

A344114 a(n) = 2^(n^2) - n!.

Original entry on oeis.org

1, 14, 506, 65512, 33554312, 68719476016, 562949953416272, 18446744073709511296, 2417851639229258349049472, 1267650600228229401496699576576, 2658455991569831745807614120520772352, 22300745198530623141535718272648361026978816, 748288838313422294120286634350736906063831234982912
Offset: 1

Views

Author

Mohammad K. Azarian, Jun 04 2021

Keywords

Comments

a(n) is the number of relations on a set with n elements that are not one-to-one functions.

Examples

			a(1) = 2^(1^2) - 1! =   1;
a(2) = 2^(2^2) - 2! =  14;
a(3) = 2^(3^2) - 3! = 506.
		

Crossrefs

Programs

  • Mathematica
    Table[2^(n^2) - n!, {n, 16}] // Flatten