login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A098096
Numbers of the form p^2 * 2^p for p prime.
3
16, 72, 800, 6272, 247808, 1384448, 37879808, 189267968, 4437573632, 451508436992, 2063731785728, 188153927303168, 3696558092582912, 16263975998062592, 310889111776919552, 25301222706567446528
OFFSET
1,1
COMMENTS
a(n) = A001248(n) * A034785(n). - Reinhard Zumkeller, Feb 07 2015
LINKS
MATHEMATICA
Table[2^Prime[p]*Prime[p]^2, {p, 16}] (* Alonso del Arte, Oct 28 2005 *)
PROG
(PARI) forprime(p=2, 53, print1(p^2*2^p, ", "))
(Haskell)
a098096 n = a001248 n * a034785 n -- Reinhard Zumkeller, Feb 07 2015
CROSSREFS
Cf. A082949, numbers of the form p^q * q^p, with distinct primes p and q.
Sequence in context: A248464 A232572 A363794 * A329076 A298218 A299347
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Sep 14 2004
EXTENSIONS
More terms from Klaus Brockhaus and Ray Chandler, Sep 15 2004
STATUS
approved