cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A320626 a(n) = (A006134(prime(n)-1) - Legendre(prime(n), 3))/prime(n)^2.

Original entry on oeis.org

1, 1, 4, 26, 2074, 21660, 2804068, 33847970, 5345496688, 12201269878660, 165029257057602, 433037204976615540, 85637003420093445994, 1215603499085916654728, 248871244937134915010626, 753881874165723132009014662, 2359161060012378685209851991166
Offset: 1

Views

Author

Jianing Song, Oct 18 2018

Keywords

Comments

a(n) is always an integer.
Are there any primes p such that p^3 divides A006134(p-1) - Legendre(p, 3)?

Examples

			a(1) = (binomial(0, 0) + binomial(2, 1) + 1)/4 = 4/4 = 1.
a(2) = (binomial(0, 0) + binomial(2, 1) + binomial(4, 2))/9 = 9/9 = 1.
a(3) = (binomial(0, 0) + binomial(2, 1) + binomial(4, 2) + binomial(6, 3) + binomial(8, 4) + 1)/25 = 100/25 = 4.
		

Crossrefs

Programs

  • PARI
    A006134(n) = sum(k=0,n,binomial(2*k,k))
    a(n) = my(p=prime(n)); (A006134(p-1) - kronecker(p,3))/p^2
Showing 1-1 of 1 results.