login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A116950 Number of functional patterns on n elements; or digraphs with maximum outdegree 1, n arrows and every point connected to an arrow. 5

%I #15 Mar 13 2020 08:58:00

%S 1,2,7,20,61,174,514,1478,4303,12437,36084,104494,303167,879283,

%T 2552803,7413583,21544347,62635823,182199853,530228946,1543761513,

%U 4496523995,13102414665,38193626823,111375529695,324891970936,948051861938,2767336312386,8080206646244

%N Number of functional patterns on n elements; or digraphs with maximum outdegree 1, n arrows and every point connected to an arrow.

%C A001372 counts functional patterns from a set with n elements to itself; A000041 (partition function) counts functional patterns from a set with n elements to a disjoint set; this is the general case where the range may overlap the domain but may also include other values.

%H Alois P. Heinz, <a href="/A116950/b116950.txt">Table of n, a(n) for n = 0..2127</a>

%F Euler transform of A002861(n) + A000081(n+1).

%F a(n) ~ c * d^n / sqrt(n), where d = A051491 = 2.95576528565199497471481752412..., c = 3.435908969217935496995961718... . - _Vaclav Kotesovec_, Sep 10 2014

%e For n=2 there are the following 7 digraphs:

%e o-+.o-+ o->o-+ o->o o-+.o->o o->o->o o->o o->o

%e ^.|.^.| ...^.| ^..| ^.|..... ....... ...^ ....

%e +-+.+-+ ...+-+ +--+ +-+..... ....... o--+ o->o

%t nmax = 750;

%t A002861 = Cases[Import["https://oeis.org/A002861/b002861.txt", "Table"], {_, _}][[;; nmax + 2, 2]];

%t A000081 = Cases[Import["https://oeis.org/A000081/b000081.txt", "Table"], {_, _}][[;; nmax + 2, 2]];

%t etr[p_] := Module[{b}, b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d*p[d], {d, Divisors[j]}]*b[n - j], {j, 1, n}]/n]; b];

%t b[n_] := A002861[[n]] + A000081[[n + 2]];

%t a = etr[b];

%t a[0] = 1;

%t a /@ Range[0, nmax](* _Jean-François Alcover_, Mar 13 2020 *)

%Y Cf. A000041, A001372, A002861, A000081.

%K easy,nice,nonn

%O 0,2

%A _Franklin T. Adams-Watters_, Mar 29 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 27 13:58 EDT 2024. Contains 375469 sequences. (Running on oeis4.)