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!)
A301812 Numbers of the form p^2 - 1 where p is a prime of the form 3*k-1 (A003627). 0
3, 24, 120, 288, 528, 840, 1680, 2208, 2808, 3480, 5040, 6888, 7920, 10200, 11448, 12768, 17160, 18768, 22200, 27888, 29928, 32040, 36480, 38808, 51528, 54288, 57120, 63000, 66048, 69168, 72360, 78960, 85848, 96720, 100488, 120408, 124608, 128880, 146688 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A003627(n)^2 - 1. - Altug Alkan, Mar 28 2018
MAPLE
A301812List := proc(len) local p, n, L; L := 3; p := 5;
for n from 2 to len do if isprime(p) then L := L, (p^2 - 1) fi;
p := p + 6; od: L end:
A301812List(65);
MATHEMATICA
Flatten[Table[n^2 - 1, {n, {2, Select[Range[5, 385, 6], PrimeQ]}}]]
CROSSREFS
Sequence in context: A065692 A127520 A175115 * A268633 A324065 A151883
KEYWORD
nonn,easy
AUTHOR
Peter Luschny, Mar 27 2018
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 07:11 EDT 2024. Contains 371782 sequences. (Running on oeis4.)