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.

A017533 a(n) = 12*n + 1.

This page as a plain text file.
%I A017533 #50 Sep 08 2022 08:44:43
%S A017533 1,13,25,37,49,61,73,85,97,109,121,133,145,157,169,181,193,205,217,
%T A017533 229,241,253,265,277,289,301,313,325,337,349,361,373,385,397,409,421,
%U A017533 433,445,457,469,481,493,505,517,529,541,553,565,577,589,601,613,625,637
%N A017533 a(n) = 12*n + 1.
%H A017533 G. C. Greubel, <a href="/A017533/b017533.txt">Table of n, a(n) for n = 0..1000</a>
%H A017533 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>
%H A017533 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (2,-1).
%F A017533 a(n) = 12*n + 1, n >= 0.
%F A017533 a(n) = 24*n - 10 - a(n-1), (with a(0)=1). - _Vincenzo Librandi_, Dec 24 2010
%F A017533 G.f.: (1 + 11*x)/(1-x)^2. - _Indranil Ghosh_, Apr 05 2017
%F A017533 E.g.f.: (1 + 12*x)*exp(x). - _G. C. Greubel_, Sep 18 2019
%p A017533 seq(12*n+1, n=0..60); # _G. C. Greubel_, Sep 18 2019
%t A017533 Array[12*#+1&,60,0] (* _Vladimir Joseph Stephan Orlovsky_, Dec 14 2009 *)
%t A017533 CoefficientList[Series[(1+11x)/(1-x)^2, {x, 0,60}], x] (* _Michael De Vlieger_, Apr 05 2017 *)
%o A017533 (PARI) a(n)=12*n+1 \\ _Charles R Greathouse IV_, Jul 10 2016
%o A017533 (Python) def a(n): return 12*n + 1 # _Indranil Ghosh_, Apr 05 2017
%o A017533 (C)
%o A017533 #include<stdio.h>
%o A017533 int main(){
%o A017533 int n;
%o A017533 for(n=0; n<=100; n++)
%o A017533 printf("%d, ", 12*n + 1);
%o A017533 return 0;
%o A017533 } /* _Indranil Ghosh_, Apr 05 2017 */
%o A017533 (Magma) [12*n+1: n in [0..60]]; // _G. C. Greubel_, Sep 18 2019
%o A017533 (Sage) [12*n + 1 for n in (0..60)] # _G. C. Greubel_, Sep 18 2019
%o A017533 (GAP) List([0..60], n-> 12*n + 1); # _G. C. Greubel_, Sep 18 2019
%Y A017533 Cf. A161700, A005408, A016813, A016921, A017281, A158057, A161705, A161709, A161714, A128470, A016945, A287326 (third column).
%K A017533 nonn,easy
%O A017533 0,2
%A A017533 _N. J. A. Sloane_