A186340 a(n) = 2^A001840(n).
1, 2, 4, 8, 32, 128, 512, 4096, 32768, 262144, 4194304, 67108864, 1073741824, 34359738368, 1099511627776, 35184372088832, 2251799813685248, 144115188075855872, 9223372036854775808, 1180591620717411303424, 151115727451828646838272
Offset: 0
Examples
G.f. = 1 + 2*x + 4*x^2 + 8*x^3 + 32*x^4 + 128*x^5 + 512*x^6 + ... - _Michael Somos_, Oct 19 2018
Crossrefs
Cf. A058937.
Programs
-
Mathematica
a[ n_] := 2^Quotient[ Binomial[n + 2, 2], 3]; (* Michael Somos, Oct 19 2018 *)
-
PARI
{a(n) = 2^(binomial(n+2, 2)\3)}; /* Michael Somos, Oct 19 2018 */
Formula
a(n)=2^floor((n+1)(n+2)/6).
Comments