cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A060498 Each permutation in the list A060117 converted to Site Swap notation, with digits reversed and inverted. "Zero throws" (fixed elements) indicated with 0's.

This page as a plain text file.
%I A060498 #6 Nov 25 2022 19:06:31
%S A060498 0,11,120,222,201,111,1300,1313,2330,3333,3302,2312,2020,3023,1120,
%T A060498 1223,2222,3122,3001,2011,3131,2231,1201,1111,14000,14014,14140,14244,
%U A060498 14203,14113,24400,24414,34440,44444,44403,34413,34030,44034,24130
%N A060498 Each permutation in the list A060117 converted to Site Swap notation, with digits reversed and inverted. "Zero throws" (fixed elements) indicated with 0's.
%C A060498 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
%F A060498 a(n) = SiteSwap3ToDec(Perm2SiteSwap1(PermUnrank3R(n))).
%p A060498 SiteSwap3ToDec := proc(s) local i,z,n; n := nops(s); z := 0; for i from n by -1 to 1 do z := 10*z; if(s[i] > 0) then z := z + (n-s[i]); fi; od; RETURN(z); end;
%Y A060498 Cf. A060495, A060496, A060499. Average of digits gives number of balls: A060502.
%K A060498 nonn
%O A060498 0,2
%A A060498 _Antti Karttunen_, Mar 22 2001