A280211 a(n) = n*(2^(n^2)).
0, 2, 32, 1536, 262144, 167772160, 412316860416, 3940649673949184, 147573952589676412928, 21760664753063325144711168, 12676506002282294014967032053760, 29243015907268149203883755326167580672, 267608942382367477698428619271780338071764992, 9727754898074489823563726246559579778829887006048256
Offset: 0
Links
- Indranil Ghosh, Table of n, a(n) for n = 0..50
- MSDN, Bitwise Left Shift Operator
- Stack Overflow Use of Bit Shifting Operators
Programs
-
Mathematica
Table[n*2^n^2,{n,0,20}] (* Harvey P. Dale, Jan 01 2021 *)
-
Python
a=lambda n: n<<(n**2)
Formula
a(n) = n*(2^(n^2)).
a(n) = n*A002416(n). - Omar E. Pol, Jan 06 2017
Comments