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 A016775 #18 Jul 08 2025 05:53:18 %S A016775 0,177147,362797056,31381059609,743008370688,8649755859375, %T A016775 64268410079232,350277500542221,1521681143169024,5559060566555523, %U A016775 17714700000000000,50542106513726817,131621703842267136,317475837322472439,717368321110468608 %N A016775 (3*n)^11. %H A016775 Vincenzo Librandi, <a href="/A016775/b016775.txt">Table of n, a(n) for n = 0..1000</a> %H A016775 <a href="/index/Rec#order_12">Index entries for linear recurrences with constant coefficients</a>, signature (12,-66,220,-495,792,-924,792,-495,220,-66,12,-1). %F A016775 From _Wesley Ivan Hurt_, Oct 28 2014: (Start) %F A016775 G.f.: 177147*(x + 2036*x^2 + 152637*x^3 + 2203488*x^4 + 9738114*x^5 + 15724248*x^6 + 9738114*x^7 + 2203488*x^8 + 152637*x^9 + 2036*x^10 + x^11) / (x - 1)^12. %F A016775 a(n) = 12*a(n-1)-66*a(n-2)+220*a(n-3)-495*a(n-4)+792*a(n-5)-924*a(n-6)+792*a(n-7)-495*a(n-8)+220*a(n-9)-66*a(n-10)+12*a(n-11)-a(n-12). %F A016775 a(n) = (3*n)^11 = 177147 * A008455(n) = A008455(A008585(n)). (End) %p A016775 A016775:=n->(3*n)^11: seq(A016775(n), n=0..20); # _Wesley Ivan Hurt_, Oct 28 2014 %t A016775 (3 Range[0, 20])^11 (* or *) %t A016775 CoefficientList[Series[177147 (x + 2036 x^2 + 152637 x^3 + 2203488 x^4 + 9738114 x^5 + 15724248 x^6 + 9738114 x^7 + 2203488 x^8 + 152637 x^9 + 2036 x^10 + x^11)/(x - 1)^12, {x, 0, 30}], x] (* _Wesley Ivan Hurt_, Oct 28 2014 *) %o A016775 (Magma) [(3*n)^11: n in [0..20]]; // _Vincenzo Librandi_, May 09 2011 %o A016775 (Maxima) A016775(n):=(3*n)^11$ %o A016775 makelist(A016775(n),n,0,20); /* _Martin Ettl_, Nov 12 2012 */ %Y A016775 Cf. A008455 (11th Powers), A008585 (3n). %K A016775 nonn,easy %O A016775 0,2 %A A016775 _N. J. A. Sloane_