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.

A306785 Primes p such that p^2 divides A050443(p).

Original entry on oeis.org

2, 5, 1051
Offset: 1

Views

Author

Seiichi Manyama, Mar 09 2019

Keywords

Comments

A050443(p) is divisible by p for p prime, so sequence looks for primes p such that p^2 divides A050443(p).
No more terms < 10^11. - Lucas A. Brown, Jan 27 2021

Examples

			A050443(2) = 0 is divisible by 2^2.
A050443(5) = 0 is divisible by 5^2.
A050443(1051) is divisible by 1051^2.
		

Crossrefs

Programs

  • PARI
    M = [0,1,0,0; 0,0,1,0; 0,0,0,1; 1,1,0,0];
    b(n) = lift( ( Mod(M,n^2)^n * [4,0,0,3]~)[1] ); \\ A050443(n) mod n^2
    forprime(n=2, 10^10, if( b(n)==0, print1(n,", ") ) ); \\ Joerg Arndt, Mar 11 2019