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!)
A193659 Q-residue of the triangle A094727, where Q=Pascal's triangle. (See Comments.) 2
1, 2, 8, 43, 265, 1832, 14160, 121771, 1157557, 12080436, 137505288, 1696841395, 22578385961, 322377704664, 4917809053032, 79840791037379, 1374705370985669, 25024307510421060, 480230285880218992 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For the definition of Q-residue, see A193649.
LINKS
FORMULA
Conjecture: a(n) +(-n-5)*a(n-1) +2*(2*n+1)*a(n-2) +(-5*n+8)*a(n-3) +2*(n-3)
*a(n-4)=0. - R. J. Mathar, Feb 19 2015
MATHEMATICA
q[n_, k_] := n + k + 1; (* A094727 *)
r[0] = 1; r[k_] := Sum[q[k - 1, i] r[k - 1 - i], {i, 0, k - 1}]
p[n_, k_] := n!/(k! (n - k)!); (* Pascal's triangle *)
v[n_] := Sum[p[n, k] r[n - k], {k, 0, n}]
Table[v[n], {n, 0, 18}] (* A193659 *)
TableForm[Table[q[i, k], {i, 0, 4}, {k, 0, i}]]
Table[r[k], {k, 0, 8}] (* A193668 *)
TableForm[Table[p[n, k], {n, 0, 4}, {k, 0, n}]]
CROSSREFS
Sequence in context: A050637 A349145 A188174 * A020023 A027836 A326561
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 02 2011
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 March 29 09:14 EDT 2024. Contains 371268 sequences. (Running on oeis4.)