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!)
A227235 G.f.: Sum_{n>=1} x^n / (1-x)^prime(n). 1
1, 3, 7, 16, 38, 96, 262, 767, 2346, 7315, 22954, 72239, 228484, 730470, 2379669, 7960733, 27453387, 97418566, 353442491, 1300699953, 4821108695, 17903653177, 66375491706, 245111697148, 900578294735, 3292301955863, 11991348060873, 43624020578230, 159059383244035, 583396507916927 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{k=1..n} binomial(prime(k) + n-k-1, n-k).
EXAMPLE
G.f.: A(x) = x + 3*x^2 + 7*x^3 + 16*x^4 + 38*x^5 + 96*x^6 + 262*x^7 + 767*x^8 +...
where
A(x) = x/(1-x)^2 + x^2/(1-x)^3 + x^3/(1-x)^5 + x^4/(1-x)^7 + x^5/(1-x)^11 + x^6/(1-x)^13 + x^7/(1-x)^17 + x^8/(1-x)^19 +...+ x^n/(1-x)^prime(n) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=1, n, x^m/(1-x+x*O(x^n))^prime(m)), n)}
for(n=1, 40, print1(a(n), ", "))
(PARI) {a(n) = sum(k=1, n, binomial(prime(k)+n-k-1, n-k))}
for(n=1, 40, print1(a(n), ", "))
CROSSREFS
Sequence in context: A211278 A364625 A196154 * A304937 A152090 A190528
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 14 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 04:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)