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!)
A079816 Number of permutations satisfying -k <= p(i)-i <= r and p(i)-i not in I, i=1..n, with k=1, r=5, I={1}. 2
1, 1, 1, 2, 4, 7, 12, 20, 34, 59, 102, 175, 300, 515, 885, 1521, 2613, 4488, 7709, 13243, 22750, 39081, 67134, 115324, 198107, 340315, 584604, 1004250, 1725130, 2963480, 5090756, 8745055, 15022519, 25806135, 44330556, 76152366, 130816831 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Number of compositions (ordered partitions) of n into elements of the set {1,3,4,5,6}.
a(n+1) is the number of multus bitstrings of length n with no runs of 6 ones. - Steven Finch, Mar 25 2020
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
Vladimir Baltic, On the number of certain types of strongly restricted permutations, Applicable Analysis and Discrete Mathematics Vol. 4, No 1 (2010), 119-135
Steven Finch, Cantor-solus and Cantor-multus distributions, arXiv:2003.09458 [math.CO], 2020.
FORMULA
Recurrence: a(n) = a(n-1) + a(n-3) + a(n-4) + a(n-5) + a(n-6).
G.f.: 1/(1-x-x^3-x^4-x^5-x^6).
MATHEMATICA
LinearRecurrence[{1, 0, 1, 1, 1, 1}, {1, 1, 1, 2, 4, 7}, 51] (* G. C. Greubel, Dec 12 2023 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( 1/(1-x-x^3-x^4-x^5-x^6) )); // G. C. Greubel, Dec 12 2023
(SageMath)
def A079816_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/(1-x-x^3-x^4-x^5-x^6) ).list()
A079816_list(50) # G. C. Greubel, Dec 12 2023
CROSSREFS
Sequence in context: A289028 A186537 A079970 * A178937 A168368 A305106
KEYWORD
nonn
AUTHOR
Vladimir Baltic, Feb 19 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 16:34 EDT 2024. Contains 371961 sequences. (Running on oeis4.)