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!)
A274173 Numbers n such that n is not divisible by 5 and n^k is of the form a^2 + b^4 for all k not divisible by 4. 0
609076, 9745216, 28998521, 36924641 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers n such that n, n^2 and n^3 is in A111925 and n is not divisible by 5.
Since there cannot be fourth power in A111925, this sequence focuses on the values of k that is not divisible by 4 in definition.
LINKS
EXAMPLE
609076 is a term because 609076 = 710^2 + 18^4, 609076^2 = 581940^2 + 424^4, 609076^3 = 475342920^2 + 676^4 and it is not divisible by 5.
PROG
(PARI) isA111925(n) = for(b=1, sqrtnint(n-1, 4), if(issquare(n-b^4), return(1))); 0;
isok(n) = n%5 != 0 && isA111925(n) && isA111925(n^2) && isA111925(n^3);
CROSSREFS
Cf. A111925.
Sequence in context: A351721 A340924 A218107 * A206175 A205429 A308279
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Jun 12 2016
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 17 21:01 EDT 2024. Contains 371767 sequences. (Running on oeis4.)