login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088582 Numbers of the form n*x^n + (n-1)*x^(n-1) + . . . + x + 1 for x=4. 0
1, 5, 37, 229, 1253, 6373, 30949, 145637, 669925, 3029221, 13514981, 59652325, 260978917, 1133394149, 4891490533, 20997617893, 89717094629, 381774870757, 1618725452005, 6841405683941, 28831638239461, 121190614972645 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

Sum of reciprocals = 1.232389931990837220821336083..

FORMULA

a(n)= (13+(3n-1)*4^(n+1))/9 = 9*a(n-1)-24*a(n-2)+16*a(n-3). G.f.: (1-4x+16x^2)/((1-x)(1-4x)^2). - R. J. Mathar, Jul 22 2009

EXAMPLE

4*4^4 + 3*4^3 + 2*4^2 + 4 + 1 = 1253.

PROG

(PARI) trajpolyn(n1, k) = { s=0; for(x1=0, n1, y1 = polypn2(k, x1); print1(y1", "); s+=1.0/y1; ); print(); print(s) } polypn2(n, p) = { x=n; y=1; for(m=1, p, y=y+m*x^m; ); return(y) }

CROSSREFS

Sequence in context: A146195 A095924 A179567 * A088583 A202556 A015548

Adjacent sequences:  A088579 A088580 A088581 * A088583 A088584 A088585

KEYWORD

nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Nov 20 2003

EXTENSIONS

Offset corrected by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jul 22 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 20:50 EST 2012. Contains 206085 sequences.