A187791 Repeat n+1 times 2^A005187(n).
1, 2, 2, 8, 8, 8, 16, 16, 16, 16, 128, 128, 128, 128, 128, 256, 256, 256, 256, 256, 256, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 32768, 32768, 32768, 32768, 32768, 32768, 32768, 32768, 32768, 65536, 65536, 65536, 65536, 65536, 65536, 65536, 65536, 65536, 65536
Offset: 0
Examples
1, 2, 2, 8, 8, 8, 16, 16, 16, 16.
Links
- OEIS Wiki, Autosequence
- Wikipedia, Lorentz Factor.
Crossrefs
Cf. A003506.
Programs
-
Mathematica
Flatten[Table[Denominator[Binomial[2n, n]/4^n], {n, 0, 19}, {n + 1}]] (* Alonso del Arte, Jan 07 2013 *) (* Checking with the antidiagonals *) diff = Table[ Differences[ CoefficientList[ Series[1/Sqrt[1 - x], {x, 0, 9}], x], n], {n, 0, 9}]; Table[ diff[[n-k+1,k]] // Denominator,{n,0,10},{k,1,n}] // Flatten (* Jean-François Alcover, Jan 07 2013 *) Flatten[Table[2^IntegerExponent[(2*n)!, 2], {n, 0, 19}, {n + 1}]]; (* Jean-François Alcover, Mar 27 2013, after A005187 *)
Formula
Repeat A046161(n) n+1 times. Triangle.
Extensions
New definition by M. F. Hasler
Comments