A001021 Powers of 12.
1, 12, 144, 1728, 20736, 248832, 2985984, 35831808, 429981696, 5159780352, 61917364224, 743008370688, 8916100448256, 106993205379072, 1283918464548864, 15407021574586368, 184884258895036416, 2218611106740436992
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
- P. J. Cameron, Sequences realized by oligomorphic permutation groups, J. Integ. Seqs. Vol. 3 (2000), #00.1.5.
- INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 276.
- 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.
- Y. Puri and T. 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 (12).
Crossrefs
Programs
-
Haskell
a001021 = (12 ^) a001021_list = iterate (* 12) 1 -- Reinhard Zumkeller, Mar 31 2012
-
Maple
A001021:=-1/(-1+12*z); # Simon Plouffe in his 1992 dissertation
-
Mathematica
Table[12^n, {n, 0, 40}] (* Vladimir Joseph Stephan Orlovsky, Feb 15 2011 *)
-
PARI
a(n)=12^n \\ Charles R Greathouse IV, Dec 21 2011
Formula
G.f.: 1/(1-12*x).
E.g.f.: exp(12x).
a(n) = 12*a(n-1). - Zerinvary Lajos, Apr 27 2009
From Reinhard Zumkeller, Mar 31 2012: (Start)
a(n) = det(|ps(i+2, j)|, 1 <= i, j <= n), where ps(n, k) are Legendre-Stirling numbers of the first kind. - Mircea Merca, Apr 04 2013
Comments