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!)
A356868 a(n) = n^2 * prime(n). 0
2, 12, 45, 112, 275, 468, 833, 1216, 1863, 2900, 3751, 5328, 6929, 8428, 10575, 13568, 17051, 19764, 24187, 28400, 32193, 38236, 43907, 51264, 60625, 68276, 75087, 83888, 91669, 101700, 122047, 134144, 149193, 160684, 182525, 195696, 214933, 235372, 254007, 276800, 300899 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
a[n_] := n^2 * Prime[n]; Array[a, 40] (* Amiram Eldar, Sep 02 2022 *)
PROG
(Python)
from sympy import prime
def a(n): return n**2 * prime(n)
print([a(n) for n in range(1, 41)]) # Michael S. Branicky, Sep 01 2022
CROSSREFS
Sequence in context: A028570 A009074 A371487 * A267344 A275132 A276294
KEYWORD
nonn,easy
AUTHOR
Alex Ratushnyak, Sep 01 2022
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 19 12:06 EDT 2024. Contains 371792 sequences. (Running on oeis4.)