login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A094417 Generalized ordered Bell numbers Bo(4,n). 3
1, 4, 36, 484, 8676, 194404, 5227236, 163978084, 5878837476, 237109864804, 10625889182436, 523809809059684, 28168941794178276, 1641079211868751204, 102961115527874385636, 6921180217049667005284, 496267460209336700111076 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

Fourth row of array A094416, which has for more information.

FORMULA

E.g.f.: 1/(5 - 4*exp(x)).

a(n) = Sum_{k, 0<=k<=n} A131689(n,k)*4^k. [From Philippe DELEHAM (kolotoko(AT)wanadoo.fr), Nov 03 2008]

E.g.f.: A(x) with A_n = 4 * Sum_{k=0..n-1} C(n,k) * A_k; A_0 = 1. [From Vladimir Kruchinin (kru(AT)ie.tusur.ru), Jan 27 2011]

MAPLE

a:= proc(n) option remember;

      `if` (n=0, 1, 4* add (binomial(n, k) *a(k), k=0..n-1))

    end:

seq (a(n), n=0..20);

MATHEMATICA

max = 16; f[x_] := 1/(5-4*E^x); CoefficientList[ Series[ f[x], {x, 0, max}], x]*Range[0, max]! (* From Jean-François Alcover, Nov 14 2011, after g.f. *)

CROSSREFS

Equals 4 * A050353(n) for n>0.

Sequence in context: A135906 A197446 A002690 * A138435 A008546 A024253

Adjacent sequences:  A094414 A094415 A094416 * A094418 A094419 A094420

KEYWORD

nonn

AUTHOR

Ralf Stephan, May 02 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 21:13 EST 2012. Contains 206085 sequences.