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.

A323902 a(n) = A002487(A156552(n)).

Original entry on oeis.org

0, 1, 1, 2, 1, 3, 1, 3, 2, 4, 1, 5, 1, 5, 3, 4, 1, 5, 1, 7, 4, 6, 1, 7, 2, 7, 3, 9, 1, 8, 1, 5, 5, 8, 3, 8, 1, 9, 6, 10, 1, 11, 1, 11, 5, 10, 1, 9, 2, 7, 7, 13, 1, 7, 4, 13, 8, 11, 1, 13, 1, 12, 7, 6, 5, 14, 1, 15, 9, 11, 1, 11, 1, 13, 5, 17, 3, 17, 1, 13, 4, 14, 1, 18, 6, 15, 10, 16, 1, 12, 4, 19, 11, 16, 7, 11, 1, 9, 9, 12, 1, 20, 1, 19, 8
Offset: 1

Views

Author

Antti Karttunen, Feb 09 2019

Keywords

Comments

Even though certain subset of terms of A156552 soon grow quite big, this sequence still has a quite moderate growth rate, thanks to the compensating effect of A002487.

Crossrefs

Programs

  • PARI
    A002487(n) = { my(a=1, b=0); while(n>0, if(bitand(n, 1), b+=a, a+=b); n>>=1); (b); }; \\ From A002487
    A064989(n) = {my(f); f = factor(n); if((n>1 && f[1,1]==2), f[1,2] = 0); for (i=1, #f~, f[i,1] = precprime(f[i,1]-1)); factorback(f)};
    A156552(n) = if(1==n, 0, if(!(n%2), 1+(2*A156552(n/2)), 2*A156552(A064989(n))));
    A323902(n) = A002487(A156552(n));

Formula

a(n) = A002487(A156552(n)) = A002487(A322993(n)).
a(p) = 1 for all primes p.