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!)
A170756 Expansion of g.f.: (1+x)/(1-36*x). 50
1, 37, 1332, 47952, 1726272, 62145792, 2237248512, 80540946432, 2899474071552, 104381066575872, 3757718396731392, 135277862282330112, 4870003042163884032, 175320109517899825152, 6311523942644393705472, 227214861935198173396992 (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)*37^k. - Philippe Deléham, Dec 04 2009
E.g.f.: (1/36)*(37*exp(36*x) - 1). - Stefano Spezia, Oct 09 2019
MAPLE
k:=37; seq(`if`(n=0, 1, k*(k-1)^(n-1)), n = 0..25); # G. C. Greubel, Oct 09 2019
MATHEMATICA
With[{k = 37}, Table[If[n==0, 1, k*(k-1)^(n-1)], {n, 0, 25}]] (* G. C. Greubel, Oct 09 2019 *)
PROG
(PARI) vector(26, n, k=37; if(n==1, 1, k*(k-1)^(n-2))) \\ G. C. Greubel, Oct 09 2019
(Magma) k:=37; [1] cat [k*(k-1)^(n-1): n in [1..25]]; // G. C. Greubel, Oct 09 2019
(Sage) k=37; [1]+[k*(k-1)^(n-1) for n in (1..25)] # G. C. Greubel, Oct 09 2019
(GAP) k:=37;; Concatenation([1], List([1..25], n-> k*(k-1)^(n-1) )); # G. C. Greubel, Oct 09 2019
CROSSREFS
Cf. A003945.
Sequence in context: A170622 A170670 A170718 * A218739 A217961 A263372
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 02:17 EDT 2024. Contains 372004 sequences. (Running on oeis4.)