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.

A044102 Multiples of 36.

This page as a plain text file.
%I A044102 #62 Apr 10 2025 13:52:46
%S A044102 0,36,72,108,144,180,216,252,288,324,360,396,432,468,504,540,576,612,
%T A044102 648,684,720,756,792,828,864,900,936,972,1008,1044,1080,1116,1152,
%U A044102 1188,1224,1260,1296,1332,1368,1404,1440,1476,1512,1548,1584,1620,1656,1692,1728
%N A044102 Multiples of 36.
%C A044102 Also, k such that Fibonacci(k) mod 27 = 0. - Mohammed Bouayoun (bouyao(AT)wanadoo.fr), Mar 18 2004
%C A044102 A033183(a(n)) = n+1. - _Reinhard Zumkeller_, Nov 07 2009
%C A044102 A122841(a(n)) > 1 for n > 0. - _Reinhard Zumkeller_, Nov 10 2013
%C A044102 Sum of the numbers from 4*(n-1) to 4*(n+1). - _Bruno Berselli_, Oct 25 2018
%H A044102 Reinhard Zumkeller, <a href="/A044102/b044102.txt">Table of n, a(n) for n = 0..1000</a>
%H A044102 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (2,-1).
%F A044102 G.f.: 36*x/(1 - x)^2.
%F A044102 a(n) = A167632(n+1). - _Reinhard Zumkeller_, Nov 07 2009
%F A044102 a(n) = 36*n. - _Vincenzo Librandi_, Jan 26 2011
%F A044102 From _Elmo R. Oliveira_, Apr 10 2025: (Start)
%F A044102 E.g.f.: 36*x*exp(x).
%F A044102 a(n) = 18*A005843(n) = 2*A008600(n).
%F A044102 a(n) = 2*a(n-1) - a(n-2). (End)
%p A044102 seq(coeff(series(36*x/(1-x)^2,x,n+1), x, n), n = 0 .. 50); # _Muniru A Asiru_, Oct 25 2018
%t A044102 Range[0, 2000, 36] (* _Vladimir Joseph Stephan Orlovsky_, May 31 2011 *)
%t A044102 CoefficientList[Series[36 x/(1 - x)^2, {x, 0, 100}], x] (* _Vincenzo Librandi_, May 20 2014 *)
%o A044102 (Haskell)
%o A044102 a044102 = (* 36)
%o A044102 a044102_list = [0, 36 ..]  -- _Reinhard Zumkeller_, Nov 10 2013
%o A044102 (Magma) [36*n: n in [0..50]]; // _Vincenzo Librandi_, May 20 2014
%o A044102 (PARI) a(n)=36*n \\ _Charles R Greathouse IV_, Oct 07 2015
%o A044102 (GAP)  a:=[0,36];; for n in [3..50] do a[n]:=2*a[n-1]-a[n-2]; od; a; # _Muniru A Asiru_, Oct 25 2018
%Y A044102 Cf. A005843, A008600, A033183, A122841, A135631, A167632, A174312.
%Y A044102 Subsequence of A008588.
%K A044102 nonn,easy
%O A044102 0,2
%A A044102 _Clark Kimberling_