A085534 a(n) = (2n)^(2n).
1, 4, 256, 46656, 16777216, 10000000000, 8916100448256, 11112006825558016, 18446744073709551616, 39346408075296537575424, 104857600000000000000000000, 341427877364219557396646723584, 1333735776850284124449081472843776, 6156119580207157310796674288400203776
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..100
Programs
-
Mathematica
{1}~Join~Table[(2 n)^(2 n), {n, 1, 4!}] (* Michael De Vlieger, Aug 04 2015 *)
-
Python
def A085534(n): return (m:=n<<1)**m # Chai Wah Wu, Nov 18 2022
Formula
a(n) = A000312(2*n). - Michel Marcus, Jul 31 2015
a(n) = A062971(n)^2. - Michel Marcus, Aug 04 2015
a(n) = [x^(2*n)] 1/(1 - 2*n*x). - Ilya Gutkovskiy, Oct 10 2017
Comments