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!)
A115587 a(n) = denominator of b(n), where b(1) = 1, b(n+1) = Sum_{k=1..n} b(k)^((-1)^(n-k)). 4
1, 1, 1, 1, 2, 4, 52, 559, 2023580, 639046564, 73885083538076135, 13974134129149036419614094980, 9508386737708519692119190558953351866716894940, 167312950453078829361896561420857502596441619698513063185995475418519527687170 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..19
EXAMPLE
{b(n)} begins 1, 1, 2, 4, 13/2, 43/4, ...
So b(7) = 1 + 1 + 1/2 + 4 + 2/13 + 43/4 = 905/52 and therefore a(7) = 52.
MAPLE
b[1]:=1: for n from 1 to 14 do b[n+1]:=sum(b[k]^((-1)^(n-k)), k=1..n): a[n]:=denom(b[n]) od: seq(a[n], n=1..14); # Emeric Deutsch, Mar 30 2006
MATHEMATICA
b[n_] := b[n] = If[n == 1, 1, Sum[b[k]^((-1)^(n - k - 1)), {k, n - 1}]]; Array[Denominator@ b@ # &, 14] (* Michael De Vlieger, Sep 30 2017 *)
CROSSREFS
Sequence in context: A085325 A082661 A205616 * A018337 A092389 A341733
KEYWORD
frac,nonn
AUTHOR
Leroy Quet, Mar 13 2006
EXTENSIONS
More terms from Emeric Deutsch, Mar 30 2006
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 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)