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!)
A306785 Primes p such that p^2 divides A050443(p). 1
2, 5, 1051 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
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
LINKS
EXAMPLE
A050443(2) = 0 is divisible by 2^2.
A050443(5) = 0 is divisible by 5^2.
A050443(1051) is divisible by 1051^2.
PROG
(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
CROSSREFS
Sequence in context: A369022 A078748 A051131 * A119748 A101341 A079014
KEYWORD
nonn,more,bref
AUTHOR
Seiichi Manyama, Mar 09 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 September 17 16:56 EDT 2024. Contains 375990 sequences. (Running on oeis4.)