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.

A277225 Initial values of runs of 5 consecutive numbers all of which are squares, primes, or products of one prime and one square.

Original entry on oeis.org

1, 16, 97, 241, 3302449, 123402049, 2163898897, 4168758049, 10062413521, 18006326449, 21376916449, 55487798449, 77248867921, 108396336049, 141466251697, 183357512449, 198504183697, 200642120449, 278584843921, 282955076449, 341261911249, 723039200449, 770057874097, 847823354449
Offset: 1

Views

Author

Charles Bowyer, Oct 14 2016

Keywords

Comments

The existence of runs of 6 or 7 numbers with the same property is an open question; a run of length 8 is impossible. - Andrey Zabolotskiy, Nov 07 2016
Numbers n such that each of the five consecutive integers k in n..n+4 has A162642(k)<2. - Jason Kimberley, Aug 27 2017
There is no n in this sequence below 10^10000 such that n+1 is also in this sequence. In other words, no n below 10^10000 such that each of the six consecutive integers n..n+5 has squarefree rank less than two. - Roger Eggleton and Jason Kimberley, Sep 02 2017

Examples

			For n=16, the five numbers in the group are 16 (square) 17 (prime) 18 (prime * square) 19 (prime) 20 (prime * square).
		

Crossrefs

Programs

  • PARI
    sp(x)=local(c);c=core(x);isprime(c)||(c==1)
    for(n=1, 100000000000, if(vector(5, i, 1)==vector(5, i, sp(n+i-1)), print1(n, ", ")))
    
  • PARI
    has(n)=if(isprime(n), return(1)); forprime(p=2,97, if(n%p==0, my(e=valuation(n,p)); if(e%2, return(issquare(n/p)), n/=p^e))); issquare(n) || isprime(core(n))
    is(n)=for(k=n,n+4,if(!has(k), return(0))); 1
    print1(1); for(s=2,1e7, t=2*s^2; if(!has(t-1) || !has(t+1), next); for(n=t-3,t-1, if(is(n), print1(", "n)))) \\ Charles R Greathouse IV, Oct 14 2016

Extensions

a(7)-a(24) from Charles R Greathouse IV, Oct 14 2016
Showing 1-1 of 1 results.