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.

A017543 a(n) = (12*n + 1)^11.

This page as a plain text file.
%I A017543 #22 Sep 08 2022 08:44:43
%S A017543 1,1792160394037,2384185791015625,177917621779460413,
%T A017543 3909821048582988049,43513917611435838661,313726685568359708377,
%U A017543 1673432436896142578125,7153014030880804126753,25804264053054077850709,81402749386839761113321,230339304218442143770717
%N A017543 a(n) = (12*n + 1)^11.
%H A017543 Matthew House, <a href="/A017543/b017543.txt">Table of n, a(n) for n = 0..10000</a>
%H A017543 <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 A017543 a(n) = A008455(A017533(n)). - _Michel Marcus_, Jul 28 2015
%F A017543 a(n) = Sum_{k=0..11} binomial(11,k)*(12*n)^k. - _Robert Israel_, Jul 28 2015
%p A017543 seq((12*n+1)^11, n=0..100); # _Robert Israel_, Jul 28 2015
%o A017543 (PARI) vector(20, n, n--; (12*n+1)^11) \\ _Michel Marcus_, Jul 28 2015
%o A017543 (Magma) [(12*n+1)^11: n in [0..12]]; // _Vincenzo Librandi_, Jul 29 2015
%Y A017543 Cf. A008455 (n^11), A017533 (12n+1).
%K A017543 nonn,easy
%O A017543 0,2
%A A017543 _N. J. A. Sloane_