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!)
A129631 Numbers n such that sum of digits of binomial(n+1,n-1) is a prime. 2
2, 6, 15, 20, 24, 31, 34, 43, 52, 61, 67, 70, 76, 85, 88, 91, 94, 97, 103, 106, 112, 115, 121, 124, 127, 130, 133, 136, 139, 141, 145, 151, 154, 160, 163, 166, 169, 178, 181, 190, 193, 196, 199, 200, 208, 211, 217, 226, 229, 232, 235, 238, 241, 247, 250, 259 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
binomial(6+1,6-1)=binomial(7,5)=7!/(5!*2!)=21 --> 2+1=3 prime.
MAPLE
P:=proc(n) local i, k, w; for i from 1 by 1 to n do w:=0; k:=binomial(i+1, i-1); while k>0 do w:=w+k-(trunc(k/10)*10); k:=trunc(k/10); od; if isprime(w) then print(i); fi; od; end: P(1000);
MATHEMATICA
Select[Range[300], PrimeQ[Total[IntegerDigits[Binomial[#+1, #-1]]]]&] (* Harvey P. Dale, Aug 13 2014 *)
CROSSREFS
Sequence in context: A324176 A294942 A227307 * A014847 A013636 A144653
KEYWORD
nonn,base
AUTHOR
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 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)