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!)
A287959 Odd primes p such that p^2 divides A001205(p)-(p-1)/2. 0
3, 43, 8237, 14533, 26153, 11314271 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Carlitz proved that A001205(p) == (p-1)/2 (mod p) for all odd primes p. This sequence consists of odd primes for which A001205(p) == (p-1)/2 (mod p^2) holds.
a(7) > 2.3*10^7. - Giovanni Resta, Jun 04 2017
LINKS
Leonard Carlitz, Congruences for the Number of n-Gons Formed by n Lines, The American Mathematical Monthly, Vol. 61, No. 6 (1954), pp. 407-411.
MATHEMATICA
a[1] = 0; a[2] = 0; a[3] = 1; a[n_] := a[n] = (n - 1)*(a[n - 1] + (n - 2)*a[n - 3]/2); lst = {}; k = 3; While[Length[lst] < 5, If[PrimeQ[k] && Divisible[a[k] - (k - 1)/2, k^2], lst = AppendTo[lst, k]]; k++]; lst
CROSSREFS
Cf. A001205.
Sequence in context: A290777 A309401 A190637 * A346200 A326970 A076361
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Jun 03 2017
EXTENSIONS
a(6) from Giovanni Resta, Jun 04 2017
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)