The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A275385 Number of labeled functional digraphs on n nodes with only odd sized cycles and such that every vertex is at a distance of at most 1 from a cycle. 1
1, 1, 3, 12, 73, 580, 5601, 63994, 844929, 12647016, 211616065, 3914510446, 79320037281, 1747219469164, 41569414869633, 1062343684252530, 29023112392093441, 844101839207139280, 26038508978625589377, 849150487829425227094, 29189561873274715264545 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Equivalently, these are the functions counted by A116956 with the additional constraint that every element is mapped to a recurrent element. A recurrent element is an element on a cycle in the functional digraph.
LINKS
FORMULA
E.g.f.: sqrt((1 + z*exp(z))/(1 - z*exp(z))).
Exponential transform of A216401.
a(n) ~ 2 * n^n / (sqrt(1+LambertW(1)) * LambertW(1)^n * exp(n)). - Vaclav Kotesovec, Jun 26 2022
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, add(`if`(j::odd,
(j-1)!*b(n-j)*binomial(n-1, j-1), 0), j=1..n))
end:
a:= n-> add(b(j)*j^(n-j)*binomial(n, j), j=0..n):
seq(a(n), n=0..20); # Alois P. Heinz, Jul 25 2016
MATHEMATICA
nn = 20; Range[0, nn]! CoefficientList[Series[Sqrt[(1 + z*Exp[z])/(1 - z*Exp[z])], {z, 0, nn}], z]
PROG
(PARI) default(seriesprecision, 30);
S=sqrt((1 + x*exp(x))/(1 - x*exp(x)));
v=Vec(S); for(n=2, #v-1, v[n+1]*=n!); v \\ Charles R Greathouse IV, Jul 29 2016
CROSSREFS
Sequence in context: A346664 A060906 A245506 * A247055 A163860 A246382
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Jul 25 2016
STATUS
approved

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 June 7 11:15 EDT 2024. Contains 373172 sequences. (Running on oeis4.)