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.

A089242 Sequence is S(infinity), where S(1) = 1, S(m+1) = concatenation S(m), a(m)+1, S(m) and a(m) is the m-th term of S(m). a(m) is also the m-th term of the sequence.

This page as a plain text file.
%I A089242 #25 Oct 29 2022 04:51:14
%S A089242 1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,4,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,2,1,2,
%T A089242 1,3,1,2,1,2,1,2,1,3,1,2,1,4,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,3,1,2,1,3,
%U A089242 1,2,1,2,1,2,1,3,1,2,1,4,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,2,1,2,1,3,1,2,1,2,1
%N A089242 Sequence is S(infinity), where S(1) = 1, S(m+1) = concatenation S(m), a(m)+1, S(m) and a(m) is the m-th term of S(m). a(m) is also the m-th term of the sequence.
%C A089242 S(m) has 2^m - 1 elements and is palindromic for all m.
%C A089242 First occurrence of k: 1,2,4,16,65536,...,. A014221: a(n+1) = 2^a(n). This is an Ackermann function. - _Robert G. Wilson v_, May 30 2006
%H A089242 Robert G. Wilson v, <a href="/A089242/b089242.txt">Table of n, a(n) for n = 1..65536</a>
%F A089242 a(m) = number of c's such that 0 = c(c(c(c(...c(m)...)))), where 2^c(n) is the highest power of 2 which divides evenly into n (i.e., a(m) = 1 + a(c(m))); also c(m) = A007814(m).
%F A089242 In other words, a(n) = number of iterates of A007814 until a zero is encountered.
%F A089242 Multiplicative with a(2^e) = 1 + a(e), a(p^e) = 1 for odd prime p. - _Andrew Howroyd_, Jul 27 2018
%F A089242 Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = Sum_{k>=1} a(2^(k-1))/2^k = 1.6980544744753405... . - _Amiram Eldar_, Oct 29 2022
%t A089242 c[n_] := (i++; Block[{k = 0, m = n}, While[ EvenQ[m], k++; m /= 2]; k]); f[n_] := (i = 0; NestWhile[c, n, # >= 1 &]; i); Array[f, 105] (* _Robert G. Wilson v_, May 30 2006 *)
%Y A089242 Cf. A007814, A014221.
%K A089242 nonn,easy,mult
%O A089242 1,2
%A A089242 _Leroy Quet_, Dec 13 2003
%E A089242 More terms from _David Wasserman_, Aug 31 2005