login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226202 a(n) = 9^n + n. 7
1, 10, 83, 732, 6565, 59054, 531447, 4782976, 43046729, 387420498, 3486784411, 31381059620, 282429536493, 2541865828342, 22876792454975, 205891132094664, 1853020188851857, 16677181699666586, 150094635296999139 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
After 83, the next prime of this form is a(76). - Bruno Berselli, Jun 18 2013
LINKS
FORMULA
G.f.: (-1+x+8*x^2)/((9*x-1)*(x-1)^2).
a(n) = 11*a(n-1)-19*a(n-2)+9*a(n-3).
MATHEMATICA
Table[9^n + n, {n, 0, 30}] (* or *) CoefficientList[Series[(- 1 + x + 8 x^2) / ((9 x - 1) (x - 1)^2), {x, 0, 30}], x]
LinearRecurrence[{11, -19, 9}, {1, 10, 83}, 20] (* Harvey P. Dale, Feb 03 2016 *)
PROG
(Magma) [9^n+n: n in [0..30]]; /* or */ I:=[1, 10, 83]; [n le 3 select I[n] else 11*Self(n-1)-19*Self(n-2)+9*Self(n-3): n in [1..30]];
(PARI) a(n)=9^n+n \\ Charles R Greathouse IV, Oct 07 2015
CROSSREFS
Cf. numbers of the form k^n+n: A006127 (k=2), A104743 (k=3), A158879 (k=4), A104745 (k=5), A226200 (k=6), A226199 (k=7), A226201 (k=8), this sequence (k=9), A081552 (k=10), A226737 (k=11).
Cf. A199677 (first differences).
Sequence in context: A055149 A014831 A048440 * A271557 A351750 A267031
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jun 16 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)