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.

A067568 Numbers n such that A000009(n) divides A022629(n).

Original entry on oeis.org

0, 1, 2, 5, 9, 11, 15
Offset: 1

Views

Author

Naohiro Nomoto, Jan 30 2002

Keywords

Comments

Next term > 10^4. - Joerg Arndt, Oct 14 2014
Next term, if it exists, is greater than 1000000. - Vaclav Kotesovec, May 05 2018

Programs

  • PARI
    N=1002;  q='q+O('q^N);
    t1=Vec(prod(m=1,N,1+q^m)); \\ A000009
    t2=Vec(prod(m=1,N,1+m*q^m)); \\ A022629
    for(k=1,N, if(t2[k]%t1[k]==0,print1(k-1,", ")) );
    \\ Joerg Arndt, Oct 14 2014