login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A128443
a(n) = floor(n*3^(n/2)).
1
1, 6, 15, 36, 77, 162, 327, 648, 1262, 2430, 4629, 8748, 16414, 30618, 56819, 104976, 193187, 354294, 647747, 1180980, 2147793, 3897234, 7057034, 12754584, 23012070, 41452398, 74559107, 133923132, 240246014, 430467210, 770444114, 1377495072
OFFSET
1,2
FORMULA
a(n) = A128444(n,n).
MAPLE
seq(floor(evalf(n*3^(n/2))), n=1..32); # Georg Fischer, Aug 31 2021
PROG
(PARI) a(n) = sqrtint(n^2*3^n); \\ Michel Marcus, Aug 31 2021
CROSSREFS
Cf. A128444.
Sequence in context: A273490 A324221 A177206 * A245470 A135854 A221905
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 03 2007
EXTENSIONS
a(24) and more terms corrected by Georg Fischer, Aug 31 2021
STATUS
approved