A001023 Powers of 14.
1, 14, 196, 2744, 38416, 537824, 7529536, 105413504, 1475789056, 20661046784, 289254654976, 4049565169664, 56693912375296, 793714773254144, 11112006825558016, 155568095557812224, 2177953337809371136, 30491346729331195904, 426878854210636742656, 5976303958948914397184, 83668255425284801560576
Offset: 0
References
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- T. D. Noe, Table of n, a(n) for n = 0..100
- Peter J. Cameron, Sequences realized by oligomorphic permutation groups, J. Integ. Seqs. Vol. 3 (2000), #00.1.5.
- INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 278.
- Tanya Khovanova, Recursive Sequences.
- Simon Plouffe, Approximations de séries génératrices et quelques conjectures, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009.
- Simon Plouffe, 1031 Generating Functions, Appendix to Thesis, Montreal, 1992
- Yash Puri and Thomas Ward, Arithmetic and growth of periodic orbits, J. Integer Seqs., Vol. 4 (2001), #01.2.1.
- Index entries for linear recurrences with constant coefficients, signature (14).
Programs
-
Magma
[ 14^n: n in [0..20] ]; // Vincenzo Librandi, Nov 21 2010
-
Magma
[ n eq 1 select 1 else 14*Self(n-1): n in [1..21] ];
-
Maple
A001023:=-1/(-1+14*z); # conjectured by Simon Plouffe in his 1992 dissertation
-
Mathematica
Table[14^n,{n,0,40}] (* Vladimir Joseph Stephan Orlovsky, Feb 15 2011 *) Denominator/@HermiteH[Range[0,20],5/28] (* Harvey P. Dale, Jul 11 2011 *)
-
PARI
a(n)=14^n \\ Charles R Greathouse IV, Nov 18 2011
-
Python
print([14**n for n in range(21)]) # Michael S. Branicky, Jan 14 2021
-
Sage
[lucas_number1(n,14,0) for n in range(1, 18)]# Zerinvary Lajos, Apr 29 2009
Formula
G.f.: 1/(1-14x), e.g.f.: exp(14x)
a(n) = 14^n; a(n) = 14*a(n-1) with a(0)=1. - Vincenzo Librandi, Nov 21 2010
Extensions
More terms from James Sellers, Sep 19 2000
Comments