A009979 Powers of 35.
1, 35, 1225, 42875, 1500625, 52521875, 1838265625, 64339296875, 2251875390625, 78815638671875, 2758547353515625, 96549157373046875, 3379220508056640625, 118272717781982421875, 4139545122369384765625, 144884079282928466796875, 5070942774902496337890625
Offset: 0
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Milan Janjic, Enumerative Formulae for Some Functions on Finite Sets.
- Tanya Khovanova, Recursive Sequences.
- Index entries for linear recurrences with constant coefficients, signature (35).
Programs
-
Magma
[35^n: n in [0..100]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
35^Range[0,15] (* Harvey P. Dale, Sep 10 2011 *)
Formula
G.f.: 1/(1-35*x). - Philippe Deléham, Nov 24 2008
a(n) = 35^n; a(n) = 35*a(n-1), n > 0; a(0)=1. - Vincenzo Librandi, Nov 21 2010
From Elmo R. Oliveira, Jul 10 2025: (Start)
E.g.f.: exp(35*x).
Comments