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.

A024062 a(n) = 6^n - 1.

This page as a plain text file.
%I A024062 #41 Jul 08 2025 17:26:49
%S A024062 0,5,35,215,1295,7775,46655,279935,1679615,10077695,60466175,
%T A024062 362797055,2176782335,13060694015,78364164095,470184984575,
%U A024062 2821109907455,16926659444735,101559956668415,609359740010495,3656158440062975,21936950640377855,131621703842267135
%N A024062 a(n) = 6^n - 1.
%C A024062 In base 6 these are 0, 5, 55, 555, ... - _David Rabahy_, Dec 12 2016
%H A024062 Vincenzo Librandi, <a href="/A024062/b024062.txt">Table of n, a(n) for n = 0..500</a>
%H A024062 Amelia Carolina Sparavigna, <a href="https://doi.org/10.5281/zenodo.3471358">The groupoids of Mersenne, Fermat, Cullen, Woodall and other Numbers and their representations by means of integer sequences</a>, Politecnico di Torino, Italy (2019), [math.NT].
%H A024062 Amelia Carolina Sparavigna, <a href="https://doi.org/10.18483/ijSci.2188">Some Groupoids and their Representations by Means of Integer Sequences</a>, International Journal of Sciences (2019) Vol. 8, No. 10.
%H A024062 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (7,-6).
%F A024062 G.f.: 1/(1 - 6*x) - 1/(1 - x). - _Mohammad K. Azarian_, Jan 14 2009
%F A024062 E.g.f.: exp(6*x) - exp(x). - _Mohammad K. Azarian_, Jan 14 2009
%F A024062 a(n+1) = 6*a(n) + 5, with a(0) = 0. - _Reinhard Zumkeller_, Nov 22 2009
%F A024062 a(n) = Sum_{i = 1..n} 5^i*binomial(n, n - i) for n > 0, a(0) = 0. - _Bruno Berselli_, Nov 11 2015
%F A024062 Sum_{n>=1} 1/a(n) = A248723. - _Amiram Eldar_, Nov 13 2020
%t A024062 6^Range[0, 19] - 1 (* _Alonso del Arte_, Feb 22 2019 *)
%o A024062 (Magma) [6^n-1: n in [0..25]]; // _Vincenzo Librandi_, Jul 03 2011
%o A024062 (PARI) a(n)=6^n-1 \\ _Charles R Greathouse IV_, Dec 12 2016
%o A024062 (Scala) ((List.fill(24)(6L)).scanLeft(1L)(_ * _)).map(_ - 1L) // _Alonso del Arte_, Feb 22 2019
%Y A024062 Cf. A000400, A002279, A248723.
%K A024062 nonn,easy
%O A024062 0,2
%A A024062 _N. J. A. Sloane_