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!)
A079704 a(n) = 2*prime(n)^2. 21
8, 18, 50, 98, 242, 338, 578, 722, 1058, 1682, 1922, 2738, 3362, 3698, 4418, 5618, 6962, 7442, 8978, 10082, 10658, 12482, 13778, 15842, 18818, 20402, 21218, 22898, 23762, 25538, 32258, 34322, 37538, 38642, 44402, 45602, 49298, 53138, 55778 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers of the form 2*p^2 where p runs through the primes.
For these numbers m, there are precisely 5 groups of order m, hence this is a subsequence of A054397. If p = 2, these 5 groups of order 8 are described in example section of A054397, and when p is odd prime, the five corresponding groups are described in a comment of A143928. - Bernard Schott, Dec 11 2021
REFERENCES
Pascal Ortiz, Exercices d'Algèbre, Collection CAPES / Agrégation, Ellipses, problème 1.35, pp. 70-74, 2004.
LINKS
FORMULA
a(n) = 2*A001248(n) = A100484(n)*A000040(n). - Reinhard Zumkeller, Nov 19 2013
EXAMPLE
a(2) = prime(2)^2*2 = 3^2*2 = 9*2 = 18.
MATHEMATICA
2 Prime[Range[40]]^2 (* Vincenzo Librandi, Mar 27 2014 *)
PROG
(PARI) forprime (p=2, 100, print1(p^2*2", "))
(Haskell)
a079704 = (* 2) . a001248 -- Reinhard Zumkeller, Nov 19 2013
(Magma) [2*p^2: p in PrimesUpTo(200)]; // Vincenzo Librandi, Mar 27 2014
(Python)
from sympy import primerange
print([2*p**2 for p in primerange(1, 200)]) # Michael S. Branicky, Dec 11 2021
CROSSREFS
A143928 is a subsequence.
Sequence in context: A109988 A335440 A066721 * A341528 A032795 A120543
KEYWORD
easy,nonn
AUTHOR
Jon Perry, Jan 31 2003
EXTENSIONS
More terms from Vincenzo Librandi, Jan 29 2010
Offset corrected by Reinhard Zumkeller, Nov 19 2013
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)