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!)
A218750 a(n) = (47^n-1)/46. 7
0, 1, 48, 2257, 106080, 4985761, 234330768, 11013546097, 517636666560, 24328923328321, 1143459396431088, 53742591632261137, 2525901806716273440, 118717384915664851681, 5579717091036248029008, 262246703278703657363377 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Partial sums of powers of 47 (A009991).
LINKS
FORMULA
a(n) = floor(47^n/46).
G.f.: x/(47*x^2-48*x+1) = x/((1-x)*(1-47*x)). [Colin Barker, Nov 06 2012]
a(0)=0, a(n) = 47*a(n-1) + 1. - Vincenzo Librandi, Nov 08 2012
a(n) = 48*a(n-1)-47*a(n-2). - Wesley Ivan Hurt, Jan 25 2022
MATHEMATICA
Table[(47^n - 1)/46, {n, 0, 19}] (* Alonso del Arte, Nov 04 2012 *)
LinearRecurrence[{48, -47}, {0, 1}, 30] (* Vincenzo Librandi, Nov 08 2012 *)
PROG
(PARI) A218750(n)=47^n\46
(Maxima) A218750(n):=(47^n-1)/46$ makelist(A218750(n), n, 0, 30); /* Martin Ettl, Nov 07 2012 */
(Magma) [n le 2 select n-1 else 48*Self(n-1) - 47*Self(n-2): n in [1..20]]; // Vincenzo Librandi, Nov 08 2012
CROSSREFS
Sequence in context: A170729 A063822 A170767 * A263504 A158783 A227139
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Nov 04 2012
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 May 7 11:47 EDT 2024. Contains 372302 sequences. (Running on oeis4.)