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.

A125833 Numbers whose base-5 representation is 333333.......3.

This page as a plain text file.
%I A125833 #21 Feb 04 2023 12:27:03
%S A125833 0,3,18,93,468,2343,11718,58593,292968,1464843,7324218,36621093,
%T A125833 183105468,915527343,4577636718,22888183593,114440917968,572204589843,
%U A125833 2861022949218,14305114746093,71525573730468,357627868652343
%N A125833 Numbers whose base-5 representation is 333333.......3.
%H A125833 G. C. Greubel, <a href="/A125833/b125833.txt">Table of n, a(n) for n = 0..1000</a>
%H A125833 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (6,-5).
%F A125833 a(n) = 3*(5^n - 1)/4.
%F A125833 a(n) = 5*a(n-1) + 3 for n > 0, a(0)=0. - _Vincenzo Librandi_, Sep 30 2010
%F A125833 From _G. C. Greubel_, Aug 03 2019: (Start)
%F A125833 a(n) = 3*A003463(n).
%F A125833 G.f.: 3*x/((1-x)*(1-5*x)).
%F A125833 E.g.f.: 3*(exp(5*x) - exp(x))/4. (End)
%e A125833 Base 5.................decimal
%e A125833 0.........................0
%e A125833 3.........................3
%e A125833 33.......................18
%e A125833 333......................93
%e A125833 3333....................468
%e A125833 33333..................2343
%e A125833 333333................11718
%e A125833 3333333...............58593
%e A125833 33333333.............292968, etc.
%p A125833 seq(3*(5^n-1)/4, n=0..30);
%t A125833 Table[FromDigits[PadRight[{},n,3],5],{n,0,30}] (* or *) LinearRecurrence[ {6,-5},{0,3},30] (* _Harvey P. Dale_, Sep 23 2016 *)
%t A125833 3*(5^Range[0,30] -1)/4 (* _G. C. Greubel_, Aug 03 2019 *)
%o A125833 (PARI) vector(30, n, n--; 3*(5^n -1)/4) \\ _G. C. Greubel_, Aug 03 2019
%o A125833 (Magma) [3*(5^n -1)/4: n in [0..30]]; // _G. C. Greubel_, Aug 03 2019
%o A125833 (Sage) [3*(5^n -1)/4 for n in (0..30)] # _G. C. Greubel_, Aug 03 2019
%o A125833 (GAP) List([0..30], n-> 3*(5^n -1)/4); _G. C. Greubel_, Aug 03 2019
%Y A125833 Cf. A003463.
%K A125833 nonn,easy
%O A125833 0,2
%A A125833 _Zerinvary Lajos_, Feb 03 2007