A110132 a(n) = floor(n/2)^ceiling(n/2).
1, 0, 1, 1, 4, 8, 27, 81, 256, 1024, 3125, 15625, 46656, 279936, 823543, 5764801, 16777216, 134217728, 387420489, 3486784401, 10000000000, 100000000000, 285311670611, 3138428376721, 8916100448256, 106993205379072, 302875106592253, 3937376385699289
Offset: 0
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..772
Programs
-
Mathematica
Join[{1},Table[Floor[n/2]^Ceiling[n/2],{n,30}]] (* Harvey P. Dale, Feb 16 2025 *)
Comments