|
| |
|
|
A163506
|
|
n-th odd nonprime * n-th odd number.
|
|
1
| |
|
|
1, 27, 75, 147, 225, 297, 429, 525, 663, 855, 1029, 1173, 1375, 1539, 1827, 2015, 2277, 2625, 2849, 3159, 3485, 3741, 4095, 4371, 4655, 5049, 5565, 6105, 6555, 6903, 7259, 7623, 7995, 8375, 8901, 9443, 9855, 10575, 11011, 11455, 11907, 12699, 13175, 13833
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
FORMULA
| a(n)=A014076(n)*A005408(n-1)
|
|
|
EXAMPLE
| a(1)=1*1=1; a(2)=9*3=27; a(3)=15*5=75; a(4)=21*7=147; a(5)=25*9=225.
|
|
|
MAPLE
| A014076 := proc(n) option remember; local a; if n = 1 then 1; else for a from procname(n-1)+2 by 2 do if not isprime(a) then return a; end if; end do: end if; end proc:
A163506 := proc(n) A014076(n) *(2*n-1); end: seq(A163506(n), n=1..80) ; # R. J. Mathar, Oct 10 2009
|
|
|
CROSSREFS
| Cf. A005408, A014076.
Sequence in context: A043237 A044017 A147651 * A044165 A044546 A121737
Adjacent sequences: A163503 A163504 A163505 * A163507 A163508 A163509
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Juri-Stepan Gerasimov (2stepan(AT)rambler.ru), Jul 29 2009
|
|
|
EXTENSIONS
| Formula index corrected, 7279 replaced by 7259 - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 10 2009
|
| |
|
|