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.

Showing 1-1 of 1 results.

A349486 a(1) = 2. a(n) is the smallest number in A349484, which is not an earlier term and for which a(n-1) + a(n) is in A349484.

Original entry on oeis.org

2, 3, 4, 5, 225, 18, 9, 27, 21, 6, 48, 108, 72, 36, 156, 54, 81, 111, 400, 7, 20, 210, 306, 135, 153, 288, 112, 224, 100, 8, 10, 902, 1168, 192, 324, 180, 50, 230, 900, 201, 280, 420, 209, 511, 407, 481, 702, 216, 405, 243, 378, 486, 432, 480, 621, 351, 513, 648
Offset: 1

Views

Author

Marius A. Burtea, Nov 20 2021

Keywords

Examples

			a(1) = 2 and a(2) = 3 are Niven numbers with derivatives 2' = 1 and 3' = 1 which are Niven numbers, and a(1) + a(2) = 2 + 3 = 5 which is Niven number and 5' = 1 is also a Niven number.
		

Crossrefs

Cf. A003415 (arithmetic derivative), A005349 (Niven numbers), A349484.

Programs

  • Magma
    f:=func; a:=[]; niven:=func; ff:=func; a:=[2]; for n in [2..58] do k:=3; while k in a or not(ff(k) and ff(k+a[n-1])) do k:=k+1; end while; Append(~a,k); end for; a;
Showing 1-1 of 1 results.