The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A363190 Odd powerful numbers (A062739) k such that the next powerful number after k is also odd. 4
25, 121, 225, 343, 1089, 1323, 2187, 2197, 3025, 3087, 3249, 5929, 6125, 6859, 7803, 8575, 9261, 10125, 11881, 11907, 14161, 15125, 16641, 16807, 19683, 19773, 21025, 22707, 25921, 27889, 29241, 29791, 30375, 33275, 36125, 41067, 42849, 44217, 45125, 45369, 49729 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A076445 is a subsequence if there are no three consecutive integers that are powerful numbers (A001694).
LINKS
EXAMPLE
25 = 5^2 is a term since it is an odd powerful number and the next powerful number, 27 = 3^3, is also odd.
MATHEMATICA
With[{pow = Select[Range[10^5], # == 1 || Min[FactorInteger[#][[;; , 2]]] > 1 &]}, pow[[Select[Range[Length[pow] - 1], OddQ[pow[[#]]] && OddQ[pow[[#+1]]] &]]]]
PROG
(PARI) lista(kmax) = {my(c = 0); for(k = 1, kmax, if(ispowerful(k), c++; if(k%2, print1(c, ", ")))); }
CROSSREFS
Sequence in context: A256519 A298009 A213445 * A031151 A016970 A174371
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, May 21 2023
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 June 5 08:30 EDT 2024. Contains 373102 sequences. (Running on oeis4.)