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!)
A060495 Each permutation in the list A060117 converted to Site Swap notation, with "zero throws" (fixed elements) replaced with n, the length of siteswap. 10

%I #7 Nov 25 2022 19:06:42

%S 1,11,312,111,231,222,4413,1313,4112,1111,2411,2312,4242,1241,4233,

%T 1223,2222,2231,3441,3342,3131,3122,3423,3333,55514,14514,51414,11314,

%U 25314,24414,55113,14113,51112,11111,25111,24112,52512,12511,52413

%N Each permutation in the list A060117 converted to Site Swap notation, with "zero throws" (fixed elements) replaced with n, the length of siteswap.

%C This sequence is not well-defined for n >= 3628800 because the Site Swap notation can contain values exceeding 9, for example, the Site Swap notation for a(3628800) is [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10]. - _Sean A. Irvine_, Nov 25 2022

%H <a href="http://www.juggling.org/bin/mfs/JIS/help/siteswap/">Site Swap notation explained.</a>

%F a(n) = SiteSwap1ToDec(Perm2SiteSwap1(PermUnrank3R(n))).

%p Perm2SiteSwap1 := proc(p) local ip,n,i,a; n := nops(p); ip := convert(invperm(convert(p,'disjcyc')),'permlist',n); a := []; for i from 1 to n do a := [op(a),((ip[i]-i) mod n)]; od; RETURN(a); end;

%p SiteSwap1ToDec := proc(s) local i,z,n; n := nops(s); z := 0; for i from 1 to n do z := 10*z; if(0 = s[i]) then z := z+n; else z := z+s[i]; fi; od; RETURN(z); end;

%Y Cf. factorial base representation A007623 and A060496, A006694.

%Y See also A060498, A060499, A061417. Average of digits gives number of balls: A060501.

%K nonn,base

%O 0,2

%A Antti Karttunen, Mar 21 2001

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 May 19 10:22 EDT 2024. Contains 372683 sequences. (Running on oeis4.)