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!)
A170762 Expansion of g.f.: (1+x)/(1-42*x). 51
1, 43, 1806, 75852, 3185784, 133802928, 5619722976, 236028364992, 9913191329664, 416354035845888, 17486869505527296, 734448519232146432, 30846837807750150144, 1295567187925506306048, 54413821892871264854016, 2285380519500593123868672 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} A097805(n,k)*(-1)^(n-k)*43^k. - Philippe Deléham, Dec 04 2009
a(0) = 1; for n>0, a(n) = 43*42^(n-1). - Vincenzo Librandi, Dec 05 2009
a(0)=1, a{1)=43, a(n)=42*a(n-1). - Harvey P. Dale, Mar 26 2012
E.g.f.: (43*exp(42*x) - 1)/42. - G. C. Greubel, Oct 10 2019
MAPLE
k:=43; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # G. C. Greubel, Oct 10 2019
MATHEMATICA
CoefficientList[Series[(1+x)/(1-42x), {x, 0, 30}], x] (* or *) Join[{1}, NestList[42#&, 43, 30]] (* Harvey P. Dale, Mar 26 2012 *)
With[{k = 43}, Table[If[n==0, 1, k*(k-1)^(n-1)], {n, 0, 25}]] (* G. C. Greubel, Oct 10 2019 *)
PROG
(PARI) a(n)=if(n, 43*42^(n-1), 1) \\ Charles R Greathouse IV, Mar 22 2016
(Magma) k:=43; [1] cat [k*(k-1)^(n-1): n in [1..25]]; // G. C. Greubel, Oct 10 2019
(Sage) k=43; [1]+[k*(k-1)^(n-1) for n in (1..25)] # G. C. Greubel, Oct 10 2019
(GAP) k:=43;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # G. C. Greubel, Oct 10 2019
CROSSREFS
Cf. A003945.
Sequence in context: A170628 A170676 A170724 * A218745 A331777 A262470
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 04 2009
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 27 05:51 EDT 2024. Contains 372009 sequences. (Running on oeis4.)