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.

A135756 a(n) = Sum_{k=0..n} C(n,k) * 2^(k*(k-1)).

Original entry on oeis.org

1, 2, 7, 80, 4381, 1069742, 1080096067, 4405584869660, 72092808533798521, 4723015159635987920282, 1237987266193328694390243007, 1298087832233881093828346620725800
Offset: 0

Views

Author

Paul D. Hanna, Nov 27 2007

Keywords

Comments

The square root of the g.f. of this sequence is an integer series (cf. A261594).

Examples

			G.f.: A(x) = 1 + 2*x + 7*x^2 + 80*x^3 + 4381*x^4 + 1069742*x^5 +...
		

Crossrefs

Cf. A261594; variants: A006896, A135755.

Programs

  • Mathematica
    Table[Sum[Binomial[n, k]*2^(2*Binomial[k, 2]), {k,0,n}], {n,0,25}] (* G. C. Greubel, Nov 07 2016 *)
  • PARI
    {a(n)=sum(k=0,n,binomial(n,k)*2^(k*(k-1)))}

Formula

a(n) ~ 2^(n*(n-1)). - Vaclav Kotesovec, Nov 27 2017