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.
%I A141055 #11 Dec 17 2014 06:24:17 %S A141055 -1,-2,-60,-120,-5040,-10080,-302400,-604800,-39916800,-79833600, %T A141055 -217945728000,-435891456000,-2615348736000,-5230697472000, %U A141055 -2667655710720000,-5335311421440000,-4257578514309120000,-8515157028618240000,-2810001819444019200000 %N A141055 The n-th differences of the row A141045(n,.). %C A141055 Can be thought of as the second sequence of a family: the first is A091137, the third starts 1, 2, 84, 168. %F A141055 a(n+1) = a(n)*A027760(n+3). %e A141055 The first differences of A141045(2,.) are 11-(-19)=30 and -19-11 = -30. The 2nd difference is a(2)= -30-30= -60. %t A141055 a[n_] := a[n] = a[n-1]*If[OddQ[n], 2, Denominator[BernoulliB[n+2]]]; a[0]=-1; Table[a[n], {n, 0, 18}] (* _Jean-François Alcover_, Dec 17 2014 *) %o A141055 (PARI) a(n)=if(n,my(pr=a(n-1));fordiv(n+2,d,if(isprime(d+1),pr*=d+1));pr,-1) \\ _Charles R Greathouse IV_, Jul 08 2011 %K A141055 sign %O A141055 0,2 %A A141055 _Paul Curtz_, Aug 01 2008 %E A141055 Edited and extended by _R. J. Mathar_, Aug 12 2008