A344113 a(n) = 2^(n^2) - n^n.
1, 12, 485, 65280, 33551307, 68719430080, 562949952597769, 18446744073692774400, 2417851639229257961991863, 1267650600228229401486703205376, 2658455991569831745807613835249018541, 22300745198530623141535718272639445405532160
Offset: 1
Examples
a(1) = 2^(1^2) - 1^1 = 1. a(2) = 2^(2^2) - 2^2 = 12. a(3) = 2^(3^2) - 3^3 = 485.
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..57
- Mohammad K. Azarian, Remarks and Conjectures Regarding Combinatorics of Discrete Partial Functions, Int'l Math. Forum (2022) Vol. 17, No. 3, 129-141.
Programs
-
Mathematica
Table[2^(n^2) - n^n, {n, 12}] // Flatten
Comments