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.

A121079 a(n) = Sum_{i=0..n} C(n,i)^2*i!*4^i + 2^n*n!.

Original entry on oeis.org

2, 7, 57, 757, 13889, 322021, 8962225, 289928549, 10666353409, 439225736005, 19999574572721, 997265831223685, 54028099173536449, 3159178743189436709, 198259676112757095985, 13289233274778582230821, 947420482287986880154625, 71574264415491967142194309
Offset: 0

Views

Author

N. J. A. Sloane, Aug 11 2006

Keywords

Crossrefs

Programs

  • Mathematica
    Array[Sum[Binomial[#, i]^2*i!*4^i, {i, 0, #}] + 2^#*#! &, 18, 0] (* Michael De Vlieger, Nov 28 2018 *)
  • PARI
    a(n) = 2^n*n! + sum(i=0, n, binomial(n,i)^2*i!*4^i); \\ Michel Marcus, May 31 2018
Showing 1-1 of 1 results.