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!)
A034703 Numbers of the form binomial(a+b+c, a) + binomial(a+b+c, b) + binomial(a+b+c, c), with a,b,c >= 1. 1
9, 14, 20, 25, 27, 35, 41, 44, 45, 54, 63, 65, 77, 90, 92, 104, 119, 126, 129, 134, 135, 140, 152, 170, 175, 189, 198, 209, 219, 230, 231, 246, 252, 261, 275, 298, 299, 300, 324, 340, 350, 377, 405, 417, 434, 440, 450, 464, 465, 469, 472, 495, 506, 527, 560 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
pr[{a_, b_, c_}]:=Module[{t=a+b+c}, Binomial[t, a]+Binomial[t, b]+ Binomial[ t, c]]; With[{nn=60}, Take[pr/@Tuples[Range[nn], 3]//Union, nn]] (* Harvey P. Dale, Oct 13 2016 *)
PROG
(PARI) tsum(a, b, c)=binomial(a+b+c, a)+binomial(a+b+c, b)+binomial(a+b+c, c)
isA034703(n) = {local(r, a, b, c); r=0; a=1; b=1; c=1; while(tsum(a, 1, 1)<=n, while(tsum(a, b, 1)<=n, while(tsum(a, b, c)<=n, if(tsum(a, b, c)==n, r=1); c=c+1); b=b+1; c=1); a=a+1; b=1; c=1); r} // Michael B. Porter, Mar 03 2010
CROSSREFS
Sequence in context: A302056 A173792 A332588 * A006624 A184218 A272527
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition clarified by Michael B. Porter, Mar 03 2010
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 19 03:21 EDT 2024. Contains 370952 sequences. (Running on oeis4.)