A193242 a(n) = (C(n, floor(n/2)) + 2)^n for n >= 0.
1, 3, 16, 125, 4096, 248832, 113379904, 94931877133, 722204136308736, 9223372036854775808, 1117730665547154976408576, 214633637635011206805784100864, 397495155639882245867698528490622976, 1135797931555041090259334993227408493600768
Offset: 0
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 0..59
Programs
-
Mathematica
Table[(Binomial[n, Floor[n/2]] + 2)^n, {n,0,20}] (* G. C. Greubel, Feb 20 2017 *)
-
PARI
for(n=0,20, print1((binomial(n, floor(n/2)) + 2)^n, ", ")) \\ G. C. Greubel, Feb 20 2017
Extensions
Corrected a(8) onward - G. C. Greubel, Feb 20 2017
Comments