# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a002525 Showing 1-1 of 1 %I A002525 M1203 N0463 #55 Jan 22 2022 16:26:42 %S A002525 0,1,2,4,10,24,55,128,300,700,1632,3809,8890,20744,48406,112960, %T A002525 263599,615120,1435416,3349624,7816528,18240289,42564706,99327052, %U A002525 231785058,540883000,1262179815,2945365040,6873169028,16038912628 %N A002525 Number of permutations according to distance. %D A002525 N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence). %D A002525 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A002525 Alois P. Heinz, Table of n, a(n) for n = 0..1000 %H A002525 Torleiv Kløve, Spheres of Permutations under the Infinity Norm - Permutations with limited displacement, Reports in Informatics, Department of Informatics, University of Bergen, Norway, no. 376, November 2008. %H A002525 R. Lagrange, Quelques résultats dans la métrique des permutations, Annales Scientifiques de l'École Normale Supérieure, Paris, 79 (1962), 199-241. %H A002525 Simon Plouffe, Approximations de séries génératrices et quelques conjectures, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009. %H A002525 Simon Plouffe, 1031 Generating Functions, Appendix to Thesis, Montreal, 1992 %H A002525 Index entries for linear recurrences with constant coefficients, signature (2,0,2,0,-1). %F A002525 G.f.: x/(1 - 2*x - 2*x^3 + x^5). - _Simon Plouffe_ %F A002525 a(n) = Sum_{k=0..n-1} A002524(k). - _Sean A. Irvine_, Mar 10 2014 %p A002525 A002525:=z/(1-2*z-2*z**3+z**5); # conjectured by _Simon Plouffe_ in his 1992 dissertation %t A002525 a[n_ /; n <= 2] := n; a[3]=4; a[4]=10; a[n_] := a[n] = 2*a[n-1] + 2*a[n-3] - a[n-5]; Table[a[n], {n, 0, 29}] (* _Jean-François Alcover_, Mar 12 2014 *) %o A002525 (PARI) a(n) = {z = x + x*O(x^n); gf = z/(1-2*z-2*z^3+z^5); polcoeff(gf, n);} \\ _Michel Marcus_, Mar 11 2014 %o A002525 (Magma) I:=[0,1,2,4,10]; [n le 5 select I[n] else 2*Self(n-1) +2*Self(n-3) -Self(n-5): n in [1..41]]; // _G. C. Greubel_, Jan 22 2022 %o A002525 (Sage) [( x/(1-2*x-2*x^3+x^5) ).series(x,n+1).list()[n] for n in (0..40)] # _G. C. Greubel_, Jan 22 2022 %Y A002525 Cf. A002524. %K A002525 nonn %O A002525 0,3 %A A002525 _N. J. A. Sloane_ %E A002525 More terms from _Sean A. Irvine_, Mar 10 2014 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE