A009981 Powers of 37.
1, 37, 1369, 50653, 1874161, 69343957, 2565726409, 94931877133, 3512479453921, 129961739795077, 4808584372417849, 177917621779460413, 6582952005840035281, 243569224216081305397, 9012061295995008299689
Offset: 0
References
- C. W. Trigg, The Powers of 37, Journal of Recreational Mathematics, Vol. 12:3 (1979-80), 186-191.
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (37).
Programs
-
Magma
[37^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
37^Range[0, 20] (* or *) NestList[37*# &, 1, 20] (* Paolo Xausa, Feb 21 2024 *)
-
PARI
a(n)=37^n \\ Charles R Greathouse IV, Oct 07 2015
Formula
G.f.: 1/(1-37*x). - Philippe Deléham, Nov 24 2008
a(n)=37^n; a(n)=37*a(n-1) n>0 a(0)=1. - Vincenzo Librandi, Nov 21 2010
Extensions
Reference added by William Rex Marshall, Nov 13 2010
Comments