OFFSET
1,1
COMMENTS
p divides a(p-1) and a(p-2) for prime p=5,11,17,23,29,41,47,53,59,71..=A007528[n] Primes of form 6n-1.
p divides a([(2p-1)/2]) for prime p=5,11,17,23,29,41,47,53,59,71..=A007528[n] Primes of form 6n-1.
p divides a((p-5)/2) for prime p=17,29,41,53,89,101.. =A040115[n] Primes of form 12n+5. Primes congruent to 5 (mod 12) excluding 5.
p divides a((p-5)/3) for prime p=11,17,23,29,41,47,53,59,71..=A007528[n] Primes of form 6n-1 excluding 5.
p divides a([(p-3)/3]) for prime p=11,17,23,29,41,47,53,59,71..=A007528[n] Primes of form 6n-1 excluding 5.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..200
FORMULA
a(n) = Sum[Sum[(i+j)!/i!/j!,{i,1,j}],{j,1,n}]. a(n) = A079309(n+1) - (n+1). a(n) = A066796(n+1)/2 - (n+1).
Recurrence: (n+1)*(3*n-2)*a(n) = 6*(3*n^2-1)*a(n-1) - 3*(9*n^2-n-2)*a(n-2) + 2*(2*n-1)*(3*n+1)*a(n-3). - Vaclav Kotesovec, Oct 19 2012
a(n) ~ 2^(2*n+3)/(3*sqrt(Pi*n)). - Vaclav Kotesovec, Oct 19 2012
a(n) = Sum_{k=1..n} Sum_{i=1..k} C(k+i,i). - Wesley Ivan Hurt, Sep 19 2017
MATHEMATICA
Table[Sum[Sum[(i+j)!/i!/j!, {i, 1, j}], {j, 1, n}], {n, 1, 50}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Alexander Adamchuk, Jul 05 2006
STATUS
approved