login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135178 a(n) = p^3 + p^2 where p = prime(n). 2
12, 36, 150, 392, 1452, 2366, 5202, 7220, 12696, 25230, 30752, 52022, 70602, 81356, 106032, 151686, 208860, 230702, 305252, 362952, 394346, 499280, 578676, 712890, 922082, 1040502, 1103336, 1236492, 1306910, 1455666, 2064512, 2265252 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

a(4)=392 because the 4th prime number is 7, 7^3=343, 7^2=49 and 343+49=392.

MAPLE

A135178:= n -> map (p -> p^(2)+p^(3), ithprime(n)):

seq (A135178(n), n=1..32); # - Jani Melik, Jan 25 2010

MATHEMATICA

Table[p=Prime[n]; p^2+p^3, {n, 100}] (*From Vladimir Joseph Stephan Orlovsky, Mar 21 2011*)

PROG

(MAGMA)[ p^3 + p^2: p in PrimesUpTo(200)]; [From V. Librandi, Dec 14 2010]

CROSSREFS

Cf. p: A000040, p^2: A001248, p^3: A030078.

Sequence in context: A055551 A073403 A064518 * A085331 A058040 A130164

Adjacent sequences:  A135175 A135176 A135177 * A135179 A135180 A135181

KEYWORD

nonn

AUTHOR

Omar E. Pol (info(AT)polprimos.com), Nov 25 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 08:58 EST 2012. Contains 205614 sequences.