Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A147794
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A147794 Number of nodes at n-th level in tree in which top node is 1; each node k has children labeled 1, 2, ..., k*(k+1) at next level. +0
3
1, 2, 8, 120, 40456, 14354709112, 10145806838546891496456, 43814454551364119293851205505402899467594454136, 12230705010706858303154182089533811056819321112988144670126813673854225371091425\ 006635639297686024 (list; graph; listen)
OFFSET

0,2

COMMENT

See the reference in A058311 for a better way to compute this!

MAPLE

M:=4;

L[0]:=[1]; a[0]:=1;

for n from 1 to M do

L[n]:=[];

t1:=L[n-1];

tc:=nops(t1);

for i from 1 to tc do

t2:=t1[i];

for j from 1 to t2*(t2+1) do

L[n]:=[op(L[n]), j]; od:

a[n]:=nops(L[n]);

#lprint(n, L[n], a[n]);

od:

od:

[seq(a[n], n=0..M)];

p := proc(n, k) option remember; local j ; if n = 1 then k*(k+1); else sum( procname(n-1, j), j=1..k*(k+1)) ; fi; expand(%) ; end: A147794 := proc(n) if n = 0 then 1 ; else subs(k=1, p(n, k)) ; fi; end: for n from 0 do printf("%d, \n", A147794(n)) ; od: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 04 2009]

CROSSREFS

A variant of A058311. Cf. A147780.

Sequence in context: A064111 A112094 A009658 this_sequence A027530 A009360 A156497

Adjacent sequences: A147791 A147792 A147793 this_sequence A147795 A147796 A147797

KEYWORD

nonn

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), May 03 2009

EXTENSIONS

More terms from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 04 2009

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 1 13:27 EST 2009. Contains 167806 sequences.


AT&T Labs Research