cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A343561 2nd row of A341867: a(n) = (n^2+15*n+32)*2^(n-3).

Original entry on oeis.org

4, 12, 33, 86, 216, 528, 1264, 2976, 6912, 15872, 36096, 81408, 182272, 405504, 897024, 1974272, 4325376, 9437184, 20512768, 44433408, 95944704, 206569472, 443547648, 950009856, 2030043136, 4328521728, 9210691584, 19562233856, 41473277952, 87778394112, 185488900096
Offset: 0

Views

Author

Jianing Song, Nov 07 2021

Keywords

Crossrefs

Cf. A341867.

Programs

  • Mathematica
    a[n_] := (n^2 + 15*n + 32)*2^(n - 3); Array[a, 31, 0] (* Amiram Eldar, Nov 08 2021 *)
  • PARI
    a(n) = (n^2+15*n+32)*2^(n-3)

Formula

a(n) = Sum_{k=0..n} binomial(n,k) * (k^2+7*k+8)/2.
G.f.: (2 - 3*x)^2/(1 - 2*x)^3.
E.g.f.: exp(2*x) * (x^2/2 + 4*x + 4).
Showing 1-1 of 1 results.