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!)
A350173 Write the square of 1st prime, then the 2nd prime, then the square of 3rd prime, alternately squaring or not. 1
4, 3, 25, 7, 121, 13, 289, 19, 529, 29, 961, 37, 1681, 43, 2209, 53, 3481, 61, 4489, 71, 5329, 79, 6889, 89, 9409, 101, 10609, 107, 11881, 113, 16129, 131, 18769, 139, 22201, 151, 24649, 163, 27889, 173, 32041, 181, 36481, 193, 38809, 199, 44521, 223, 51529, 229, 54289, 239, 58081, 251, 66049, 263, 72361, 271, 76729, 281, 80089, 293 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
J.-P. Delahaye, Des suites fractales d’entiers, Pour la Science, No. 531 January 2022. Sequence f) p. 82.
LINKS
MAPLE
[seq(ithprime(n)^(1+(n mod 2)), n=1..80)]; # N. J. A. Sloane, Dec 18 2021
PROG
(Python)
from sympy import prime
def A350173(n): return prime(n)**(n%2+1) # Chai Wah Wu, Dec 19 2021
CROSSREFS
Sequence in context: A224515 A286328 A189742 * A243237 A072044 A286795
KEYWORD
nonn
AUTHOR
Michel Marcus, Dec 18 2021
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 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)