|
Search: id:A144551
|
|
|
| A144551 |
|
a(n)=nonprimes(n)*nonprimes(n+1)/2, where nonprime(n)=A141468(n). |
|
+0 1
|
|
| 0, 2, 12, 24, 36, 45, 60, 84, 105, 120, 144, 180, 210, 231, 264, 300, 325, 351, 378, 420, 480, 528, 561, 595, 630, 684, 741, 780, 840, 924, 990, 1035, 1104, 1176, 1225, 1275, 1326, 1404, 1485, 1540, 1596, 1653, 1740, 1860, 1953, 2016, 2080, 2145, 2244, 2346
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
EXAMPLE
|
If n=1, then 0*1/2=0=a(1). If n=2, then 1*4/2=2=a(2). If n=3, then 4*6/2=12=a(3), etc.
|
|
MAPLE
|
A141468 := proc(n) option remember ; local a; if n = 1 then 0; else for a from procname(n-1)+1 do if not isprime(a) then RETURN(a) ; fi; od: fi; end: A144551 := proc(n) A141468(n)*A141468(n+1)/2 ; end: for n from 1 to 200 do printf("%d, ", A144551(n)) ; od: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jan 03 2009]
|
|
CROSSREFS
|
Cf. A141468.
Sequence in context: A112718 A117301 A141079 this_sequence A110821 A100786 A141586
Adjacent sequences: A144548 A144549 A144550 this_sequence A144552 A144553 A144554
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Juri-Stepan Gerasimov (2stepan(AT)rambler.ru), Dec 31 2008
|
|
EXTENSIONS
|
1963 replaced by 1953 by R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Jan 03 2009
|
|
|
Search completed in 0.002 seconds
|