A087752 Powers of 49.
1, 49, 2401, 117649, 5764801, 282475249, 13841287201, 678223072849, 33232930569601, 1628413597910449, 79792266297612001, 3909821048582988049, 191581231380566414401, 9387480337647754305649, 459986536544739960976801, 22539340290692258087863249, 1104427674243920646305299201
Offset: 0
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 (49).
Crossrefs
Programs
-
Magma
[49^n: n in [0..20]]; // Vincenzo Librandi, Nov 21 2010
-
Mathematica
49^Range[0,20] (* or *) Join[{1},NestList[49#&,49,20]] (* Harvey P. Dale, May 10 2019 *)
-
Maxima
makelist(49^n,n,0,20); /* Martin Ettl, Nov 12 2012 */
-
PARI
a(n)=49^n \\ M. F. Hasler, Apr 19 2015
Formula
G.f.: 1/(1-49*x). - Philippe Deléham, Nov 24 2008
From Vincenzo Librandi, Nov 21 2010: (Start)
a(n) = 49^n.
a(n) = 49*a(n-1), a(0)=1. (End)
From Elmo R. Oliveira, Jul 08 2025: (Start)
E.g.f.: exp(49*x).
Extensions
Edited by M. F. Hasler, Apr 19 2015
Comments