The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A123617 Central terms of triangle A123610: a(n) = A123610(2*n,n). 6
1, 2, 10, 68, 618, 6352, 71188, 841332, 10352618, 131328068, 1706742160, 22619741212, 304685855700, 4160480013848, 57476485976388, 802048167035968, 11290551106506218, 160168176177137896, 2287724464324213972 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Related sequences: A123610(2n+1,n) = A000891(n); A123610(2n+2,n) = A123618(n); A123610(2n+2,n)/(n+1) = A123619(n).
LINKS
MATHEMATICA
T[_, 0] = 1; T[n_, k_] := 1/n DivisorSum[n, If[GCD[k, #] == #, EulerPhi[#]*Binomial[n/#, k/#]^2, 0] &];
Table[T[n, k], {n, 0, 11}, {k, 0, n}] // Flatten (* A123610 *)
Table[T[2*n, n], {n, 0, 50}] (* A123617 *)
Table[T[2*n + 2, n], {n, 0, 50}] (* A123618 *)
Table[T[2*n + 2, n]/(n+1), {n, 0, 50}] (* A123619 *
(* G. C. Greubel, Oct 26 2017 *)
PROG
(PARI) {a(n)=if(n==0, 1, (1/2/n)*sumdiv(2*n, d, if(gcd(n, d)==d, eulerphi(d)*binomial(2*n/d, n/d)^2, 0)))}
CROSSREFS
Cf. A123610 (triangle); A000891, A123618.
Sequence in context: A165968 A104098 A056755 * A325054 A139715 A293914
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 03 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 May 14 09:47 EDT 2024. Contains 372532 sequences. (Running on oeis4.)