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.

Previous Showing 21-23 of 23 results.

A160735 First differences of A160734.

Original entry on oeis.org

1, 2, 2, 1, 2, 3, 2, 2, 4, 6, 5, 3, 5, 5, 2, 2, 4
Offset: 1

Views

Author

Omar E. Pol, Jun 10 2009

Keywords

Crossrefs

A153838 Records in A153004.

Original entry on oeis.org

1, 3, 6, 9, 12, 21, 24, 27, 30, 45, 66, 69, 84, 105, 156, 192, 195, 222, 273, 366, 504, 528, 531, 558, 717, 912, 1236, 1536, 1539, 1572, 1581, 1797, 2346, 3060, 4008, 4464, 4467, 4500, 4725, 5940, 7752, 10128, 12480, 12483, 12516, 12522, 12741, 12825, 13959
Offset: 1

Views

Author

Omar E. Pol, Jan 02 2009

Keywords

Crossrefs

Programs

  • Maple
    read("transforms3") : a139250 := BFILETOLIST("b139250.txt") : A139250 := proc(n) global a139250; op(n+1,a139250) ; end: A153003 := proc(n) if n =0 then 0; else 1+3/4*(A139250(n+1)-3) ; fi; end: A153004 := proc(n) A153003(n)-A153003(n-1) ; end: rec := -1 ; for n from 1 to 3000 do t := A153004(n) ; if t > rec then printf("%d,",t) ; rec := t; fi; od: # R. J. Mathar, Jul 13 2009

Extensions

More terms from R. J. Mathar, Jul 13 2009

A220499 Number of line segments in an H tree with n levels that have no correspondence with the toothpicks of the toothpick structure of A139250 after n-th stage.

Original entry on oeis.org

0, 0, 0, 0, 4, 16, 40, 92, 212, 464, 968, 1980, 4016, 8096, 16260, 32612, 65364, 130896, 261960, 524092, 1048368, 2096928, 4194052, 8388324, 16776912, 33554112, 67108516, 134217344, 268435032, 536870428, 1073741252, 2147482996, 4294966612, 8589933904
Offset: 0

Views

Author

Omar E. Pol, Feb 16 2013

Keywords

Comments

More generally, differences between A000225 and A139250.

Examples

			For n = 0..3, the number of line segments in the H tree equals the number of toothpicks in the toothpick structure of A139250, so a(n) = 0, if 0 <= n <= 3. Note that there is a correspondence between every element from the two structures. For n = 4 the H tree contains 15 line segments, on the other hand the toothpick structure contains only 11 toothpicks. There are four line segments in the H tree that have no correspondence with the toothpicks of the toothpicks structure. They are the four line segments of the last generation that are closer to the center of the H tree, so a(4) = 4.
		

Crossrefs

Formula

a(n) = A000225(n) - A139250(n).
Previous Showing 21-23 of 23 results.