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!)
A309290 Numbers k such that binomial(k^2,k) - k^2 is squarefree. 2
0, 2, 5, 7, 11, 17, 19, 23, 29, 31, 33, 35, 41, 43, 47, 59, 61, 65, 67, 71, 73, 77, 79, 83 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Sequence probably continues ..., 89, 97, ... [There is no composite term between 77 and 161 except possibly 133, 143 and 145. - M. F. Hasler, Feb 15 2022]
The sequence appears to contain most primes (except 3, 13, 37, 53, ...) and some semiprimes (33, 65, 77, ...). What can be said about these "exceptional" values? What are the first terms with more prime factors? The sequence remains nearly the same if k^2 is replaced by k^k. (Then 0 and 11 are not in the sequence but 3, 13, 37 and 53 are.) - M. F. Hasler, Jul 31 2019
113 is a term. - Chai Wah Wu, Jul 20 2020
LINKS
Juri-Stepan Gerasimov and others, C(2n,n) - n^2 and C(n^2,n) - n^n, SeqFan list, April 20, 2018.
MATHEMATICA
Select[Range[0, 50], SquareFreeQ[Binomial[#^2, #] - #^2] &] (* Vincenzo Librandi, Jul 31 2019 *)
PROG
(PARI) is(n)=issquarefree(binomial(n^2, n)-n^2)
for(n=0, oo, is(n) && print1(n, ", "))
(Magma) [0] cat [n: n in [2..45] | IsSquarefree(Binomial(n^2, n) - n^2)]; // Vincenzo Librandi, Jul 31 2019
CROSSREFS
Cf. A308078 (binomial(n^2,n) - n^n is squarefree), A309289 (binomial(2n,n) - n^2 is prime).
Sequence in context: A342939 A089781 A144832 * A023238 A194991 A345667
KEYWORD
nonn,hard,more
AUTHOR
M. F. Hasler (at the suggestion of Juri-Stepan Gerasimov and others), Jul 21 2019
EXTENSIONS
a(24) from Daniel Suteu, Jul 30 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.)