cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A168048 a(n) = C(n)*Pi(n) where C(n) = number of nonprimes <= n, Pi(n) = number of primes <= n.

This page as a plain text file.
%I A168048 #8 May 11 2019 01:34:37
%S A168048 0,1,2,4,6,9,12,16,20,24,30,35,42,48,54,60,70,77,88,96,104,112,126,
%T A168048 135,144,153,162,171,190,200,220,231,242,253,264,275,300,312,324,336,
%U A168048 364,377,406,420,434,448,480,495,510,525,540,555,592,608,624,640,656,672
%N A168048 a(n) = C(n)*Pi(n) where C(n) = number of nonprimes <= n, Pi(n) = number of primes <= n.
%F A168048 a(n) = A062298(n)*A000720(n).
%p A168048 A000720 := proc(n) numtheory[pi](n) ; end proc: A168048 := proc(n) pi := A000720(n) ; pi*(n-pi) ; end proc: seq(A168048(n),n=1..120) ; # _R. J. Mathar_, Nov 18 2009
%Y A168048 Cf. A000720, A062298.
%K A168048 nonn
%O A168048 1,3
%A A168048 _Daniel Tisdale_, Nov 17 2009
%E A168048 a(1) and terms after a(16) from _R. J. Mathar_, Nov 18 2009
%E A168048 Edited by _Jon E. Schoenfield_, May 10 2019