A067471 n-th root of A067470(n).
1, 4, 5, 6, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9
Offset: 1
Crossrefs
Cf. A067470.
Extensions
More terms from Sascha Kurz, Mar 18 2002
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
a001019 = (9 ^) a001019_list = iterate (* 9) 1 -- Reinhard Zumkeller, Feb 12 2013
[9^n : n in [0..25]]; // Wesley Ivan Hurt, Sep 27 2016
A001019:=n->9^n: seq(A001019(n), n=0..25); # Wesley Ivan Hurt, Sep 27 2016
Table[9^n, {n, 0, 40}] (* Vladimir Joseph Stephan Orlovsky, Feb 15 2011 *) NestList[9#&,1,20] (* Harvey P. Dale, Jul 04 2014 *)
A001019(n):=9^n$ makelist(A001019(n),n,0,30); /* Martin Ettl, Nov 05 2012 */
a(n)=9^n \\ Charles R Greathouse IV, Sep 24 2015
Comments