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!)
A309289 Numbers k such that binomial(2k,k) - k^2 is prime. 2
2, 3, 5, 9, 13, 27, 47, 59, 111, 547, 923, 1301, 2263, 5189 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If a term k > 2 is divisible by a prime p, then all digits in the base-p expansion of k are less than p/2. In particular, 2 is the only even term. - Robert Israel, Aug 02 2019
LINKS
Juri-Stepan Gerasimov and others, C(2n,n) - n^2 and C(n^2,n) - n^n, SeqFan list, April 20, 2018.
MAPLE
filter:= t -> isprime(binomial(2*t, t)-t^2):
select(filter, [2, seq(i, i=3..6000, 2)]); # Robert Israel, Aug 02 2019
PROG
(PARI) is(n)=ispseudoprime(binomial(2*n, n)-n^2)
for(n=0, oo, is(n) && print1(n, ", "))
CROSSREFS
Cf. A309290 (binomial(k^2,k) - k^2 is squarefree).
Sequence in context: A171925 A186946 A057225 * A220315 A070819 A195667
KEYWORD
nonn,hard,more
AUTHOR
M. F. Hasler (at the suggestion of Juri-Stepan Gerasimov and others), Jul 21 2019
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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)