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!)
A179899 Integers of the form A179896(n)/A141468(n+1). 2

%I #8 Feb 10 2019 01:50:54

%S 0,12,21,30,36,39,48,51,57,66,72,75,81,84,93,96,102,111,114,120,126,

%T 129,135,138,141,147,156,165,171,174,177,180,183,186,192,198,201,210,

%U 213,216,219,228,231,237,240,246,252,255,261,264,273,276,279,282,291

%N Integers of the form A179896(n)/A141468(n+1).

%H Nathaniel Johnston, <a href="/A179899/b179899.txt">Table of n, a(n) for n = 1..10000</a>

%e 0 = 0/1, 12 = 108/9, 21 = 315/15, 30 = 630/21, 36 = 900/25 and so on.

%p ithnonprime := proc(n)local k: option remember: if(n=1)then return 1: else k := procname(n-1)+1: while true do if(not isprime(k))then return k fi: k:=k+1: od: fi: end: A179899ind := proc(n) option remember: local k: if(n=1)then return 1:fi: for k from procname(n-1)+1 do if(ithnonprime(k) mod 2 <> 0)then return k: fi: od: end: A179899 := proc(n) return 3*(ithnonprime(A179899ind(n))-1)/2: end: seq(A179899(n),n=1..55); # _Nathaniel Johnston_, May 05 2011

%Y Cf. A000040, A179545, A179896.

%K easy,nonn

%O 1,2

%A _Odimar Fabeny_, Jul 31 2010

%E More terms from _Odimar Fabeny_, Aug 12 2010

%E Definition rephrased by _R. J. Mathar_, Sep 01 2010

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)