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.

A241911 After a(1)=1, numbers 1 .. bigomega(n), followed by numbers 1 .. bigomega(n+1), etc., where bigomega(n)=A001222(n) is the number of prime factors of n (with repetition).

This page as a plain text file.
%I A241911 #8 May 15 2014 10:20:27
%S A241911 1,1,1,1,2,1,1,2,1,1,2,3,1,2,1,2,1,1,2,3,1,1,2,1,2,1,2,3,4,1,1,2,3,1,
%T A241911 1,2,3,1,2,1,2,1,1,2,3,4,1,2,1,2,1,2,3,1,2,3,1,1,2,3,1,1,2,3,4,5,1,2,
%U A241911 1,2,1,2,1,2,3,4,1,1,2,1,2,1,2,3,4,1,1,2,3,1,1,2,3,1,2,3,1,2,1,1,2,3,4,5,1,2,1,2,3,1,2,1,2,3,1,1,2,3,4,1
%N A241911 After a(1)=1, numbers 1 .. bigomega(n), followed by numbers 1 .. bigomega(n+1), etc., where bigomega(n)=A001222(n) is the number of prime factors of n (with repetition).
%H A241911 Antti Karttunen, <a href="/A241911/b241911.txt">Table of n, a(n) for n = 1..10000</a>
%F A241911 a(1)=1, a(n) = n - A022559(A082288(n)-1) - 1.
%e A241911 Viewed as an irregular table, the sequence is constructed as:
%e A241911 "Row"
%e A241911   [1] 1; (by convention, a(1)=1)
%e A241911   [2] 1; (because bigomega(2)=1, we have here terms from 1 to 1)
%e A241911   [3] 1; (same with 3, bigomega(3)=1)
%e A241911   [4] 1, 2; (as bigomega(4)=2, we have terms from 1 to 2)
%e A241911   [5] 1;
%e A241911   [6] 1, 2;
%e A241911   [7] 1;
%e A241911   [8] 1, 2, 3; (as bigomega(8)=3, we have terms from 1 to 3).
%e A241911 etc.
%o A241911 (Scheme, with _Antti Karttunen_'s IntSeq-library)
%o A241911 (define (A241911 n) (if (= n 1) 1 (- n (A022559 (- (A082288 n) 1)) 1)))
%Y A241911 One more than A241910.
%Y A241911 Cf. A022559, A082288, A241915.
%K A241911 nonn,tabf
%O A241911 1,5
%A A241911 _Antti Karttunen_, May 01 2014