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!)
A079972 Number of permutations satisfying -k <= p(i)-i <= r and p(i)-i not in I, i=1..n, with k=1, r=4, I={1,2}. 5
1, 1, 1, 1, 2, 4, 6, 8, 11, 17, 27, 41, 60, 88, 132, 200, 301, 449, 669, 1001, 1502, 2252, 3370, 5040, 7543, 11297, 16919, 25329, 37912, 56752, 84968, 127216, 190457, 285121, 426841, 639025, 956698, 1432276, 2144238, 3210104, 4805827, 7194801 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Number of compositions (ordered partitions) of n into elements of the set {1,4,5}.
a(n+3) is the number of length-n binary words with no substring 1x1 of 1xy1 (that is, no 1's occur with distance two or three), see fxtbook link. - Joerg Arndt, May 27 2011
REFERENCES
D. H. Lehmer, Permutations with strongly restricted displacements. Combinatorial theory and its applications, II (Proc. Colloq., Balatonfured, 1969), pp. 755-770. North-Holland, Amsterdam, 1970.
LINKS
Said Amrouche, Hacène Belbachir, Unimodality and linear recurrences associated with rays in the Delannoy triangle, Turkish Journal of Mathematics (2019) Vol. 44, 118-130.
Joerg Arndt, Matters Computational (The Fxtbook), section 14.10.3, p. 322
Vladimir Baltic, On the number of certain types of strongly restricted permutations, Applicable Analysis and Discrete Mathematics Vol. 4, No 1 (2010), 119-135
FORMULA
a(n) = a(n-1) + a(n-4) + a(n-5).
G.f.: 1/(1-x-x^4-x^5).
a(n) = Sum_{k=0..n} Sum_{j=floor((n-k)/4)..floor((n-k)/3)} binomial(k,j)*binomial(j,n-k-3*j). - Vladimir Kruchinin, May 26 2011
MATHEMATICA
CoefficientList[Series[1/(1 - x - x^4 - x^5), {x, 0, 41}], x] (* Michael De Vlieger, Feb 03 2020 *)
PROG
(Maxima)
a(n):=sum(sum(binomial(k, j)*binomial(j, n-k-3*j), j, floor((n-k)/4), floor((n-k)/3)), k, 0, n); /* Vladimir Kruchinin, May 26 2011 */
CROSSREFS
Sequence in context: A338237 A039823 A284617 * A164144 A353007 A071241
KEYWORD
nonn
AUTHOR
Vladimir Baltic, Feb 17 2003
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 April 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)